A CNN for DR classification
A CNN for classification of retinal fundus images built using Keras with tensorflow backend
Project Structure
Directory Tree
./
├── data
│ ├── test
│ │ ├── 0
│ │ ├── 1
│ │ ├── 2
│ │ └── 3
│ └── train
│ ├── 0
│ ├── 1
│ ├── 2
│ └── 3
├── environment.yml
├── model
│ ├── model.h5
│ ├── model.json
│ ├── model.png
│ └── model.txt
├── result.html
└── src
├── export.py
├── model
│ ├── cnn.py
│ ├── init.py
│ └── pycache
├── test.py
└── train.py
conda env create -f environment.yml
python src/train.py
python src/export.py
python src/test.py