yaraa11 commited on
Commit
4abf8dc
·
verified ·
1 Parent(s): 7dec85c

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +32 -0
config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "Brain Tumor Segmentation (CNN)",
3
+ "library_name": "keras",
4
+ "model_type": "cnn-segmentation",
5
+ "input_shape": [224, 224, 1],
6
+ "output_shape": [224, 224, 1],
7
+ "task": "image-segmentation",
8
+ "language": "python",
9
+ "framework": "tensorflow-keras",
10
+ "threshold": 0.5,
11
+ "loss": "binary_crossentropy",
12
+ "metrics": [
13
+ "accuracy",
14
+ "precision",
15
+ "recall",
16
+ "dice_coef"
17
+ ],
18
+ "trainable_parameters": 487009,
19
+ "license": "mit",
20
+ "tags": [
21
+ "brain-tumor",
22
+ "medical-imaging",
23
+ "segmentation",
24
+ "keras",
25
+ "cnn",
26
+ "tensorflow",
27
+ "dice-loss",
28
+ "binary-segmentation"
29
+ ],
30
+ "repo_url": "https://huggingface.co/yaraa11/brain-tmor-segmentation",
31
+ "description": "Convolutional Neural Network for brain tumor segmentation trained on the 2017 Brain Tumor Dataset by Jun Cheng."
32
+ }