Update README.md
Browse files
README.md
CHANGED
|
@@ -21,24 +21,22 @@ The model also predicts the chest X-ray view (AP, PA, lateral), patient age, and
|
|
| 21 |
The [CheXpert](https://stanfordmlgroup.github.io/competitions/chexpert/) (small version) and [NIH Chest X-ray](https://nihcc.app.box.com/v/ChestXray-NIHCC) datasets were used to train the model.
|
| 22 |
Segmentation masks were obtained from the CheXmask [dataset](https://physionet.org/content/chexmask-cxr-segmentation-data/0.4/) ([paper](https://www.nature.com/articles/s41597-024-03358-1)).
|
| 23 |
The final dataset comprised 335,516 images from 96,385 patients and was split into 80% training/20% validation. A holdout test set was not used since minimal tuning was performed.
|
|
|
|
|
|
|
| 24 |
|
| 25 |
Validation performance as follows:
|
| 26 |
```
|
| 27 |
Segmentation (Dice similarity coefficient):
|
| 28 |
-
Right Lung: 0.
|
| 29 |
-
Left Lung: 0.
|
| 30 |
-
Heart: 0.
|
| 31 |
|
| 32 |
Age Prediction:
|
| 33 |
-
Mean Absolute Error: 5.
|
| 34 |
|
| 35 |
-
Classification
|
| 36 |
-
View:
|
| 37 |
-
|
| 38 |
-
PA: 0.998
|
| 39 |
-
Lateral: 1.000
|
| 40 |
-
|
| 41 |
-
Female: 0.999
|
| 42 |
```
|
| 43 |
|
| 44 |
To use the model:
|
|
|
|
| 21 |
The [CheXpert](https://stanfordmlgroup.github.io/competitions/chexpert/) (small version) and [NIH Chest X-ray](https://nihcc.app.box.com/v/ChestXray-NIHCC) datasets were used to train the model.
|
| 22 |
Segmentation masks were obtained from the CheXmask [dataset](https://physionet.org/content/chexmask-cxr-segmentation-data/0.4/) ([paper](https://www.nature.com/articles/s41597-024-03358-1)).
|
| 23 |
The final dataset comprised 335,516 images from 96,385 patients and was split into 80% training/20% validation. A holdout test set was not used since minimal tuning was performed.
|
| 24 |
+
The view classifier was trained only on CheXpert images (NIH images excluded from loss function), given that lateral radiographs are only present in CheXpert.
|
| 25 |
+
This is to avoid unwanted bias in the model, which can occur if one class originates only from a single dataset.
|
| 26 |
|
| 27 |
Validation performance as follows:
|
| 28 |
```
|
| 29 |
Segmentation (Dice similarity coefficient):
|
| 30 |
+
Right Lung: 0.957
|
| 31 |
+
Left Lung: 0.948
|
| 32 |
+
Heart: 0.943
|
| 33 |
|
| 34 |
Age Prediction:
|
| 35 |
+
Mean Absolute Error: 5.25 years
|
| 36 |
|
| 37 |
+
Classification:
|
| 38 |
+
View (AP, PA, lateral): 99.42% accuracy
|
| 39 |
+
Female: 0.999 AUC
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
```
|
| 41 |
|
| 42 |
To use the model:
|