- Insall Required libraries
python3 -m pip install -r requirements.txt
-
Download the dataset from here and unzip it in dataset directory.
-
Download the model from here
-
To train Convolution network and VGG-19 network, run all the required cells from notebook
train_cnn.ipynb
andtrain_vgg.ipynb
respectively. -
For evaluation of the models, run the notebook
model_evaluation.ipynb
├── dataset
│ ├── chest_xray
│ │ ├── train
│ │ ├── test
├── models
│ ├── cnn_model.pth
│ ├── vgg_19_model.pth
├── results
├── model_evaluation.ipynb
├── models.py
├── train_cnn.ipynb
├── train_vgg.ipynb
├── utils.py