preethamganesh commited on
Commit
237df14
·
1 Parent(s): b8f7d2d

updated README.

Browse files

Added Training details section.

Files changed (1) hide show
  1. README.md +15 -9
README.md CHANGED
@@ -38,13 +38,6 @@ This repository hosts the trained model for **FLAIR Abnormality Segmentation** i
38
  - **Task:** Image Segmentation
39
  - **License:** Apache 2.0
40
 
41
- ## Performance
42
-
43
- The model achieved the following metrics on the test dataset:
44
-
45
- - **Dice Coefficient:** 0.843
46
- - **Intersection over Union (IoU):** 0.609
47
-
48
  ## Usage
49
 
50
  To use this model for inference, you can load it using the `tensorflow` library.
@@ -74,9 +67,22 @@ output = model(input_data)["output_0"]
74
  print("Output shape:", output.shape)
75
  ```
76
 
77
- ## Dataset
 
 
78
 
79
- The model was trained on the LGG Segmentation Dataset, which contains Brain MRI images with FLAIR abnormalities labeled for segmentation tasks. The dataset is available on [Kaggle](https://www.kaggle.com/datasets/mateuszbuda/lgg-mri-segmentation).
 
 
 
 
 
 
 
 
 
 
 
80
 
81
  ## Citation
82
 
 
38
  - **Task:** Image Segmentation
39
  - **License:** Apache 2.0
40
 
 
 
 
 
 
 
 
41
  ## Usage
42
 
43
  To use this model for inference, you can load it using the `tensorflow` library.
 
67
  print("Output shape:", output.shape)
68
  ```
69
 
70
+ ## Training Details
71
+
72
+ ### Compute
73
 
74
+ - The model was trained on a GeForce 4070Ti GPU with 16GB VRAM.
75
+ - Training completed in approximately 4.9 minutes over 24 epochs.
76
+
77
+ ### Dataset
78
+
79
+ - The model was trained on the [LGG Segmentation Dataset](https://www.kaggle.com/datasets/mateuszbuda/lgg-mri-segmentation), which includes Brain MRI images labeled for FLAIR abnormality segmentation.
80
+ - Only images with positive FLAIR abnormalities were selected for training.
81
+
82
+ ### Performance on test set
83
+
84
+ - **Dice Coefficient:** 0.843
85
+ - **Intersection over Union (IoU):** 0.609
86
 
87
  ## Citation
88