├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── src ├── .gitignore ├── Notes ├── imports.txt └── notes.txt ├── README.md ├── kaggle-code ├── README.md ├── densenet-using-zoom.ipynb ├── effnet-b3-new.ipynb ├── effnet-b5-complete_preprocessing-transfer_b5_old_new.ipynb ├── effnet-b5-new.ipynb ├── effnet-b5-old-new.ipynb ├── ensemble.ipynb ├── links_to_notebooks.txt └── sumbmission_checker.ipynb ├── practice-useless ├── 0.png ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── contour.py ├── grayscale.py ├── imports.txt ├── mnist │ ├── epic_num_reader.model │ │ ├── saved_model.pb │ │ └── variables │ │ │ ├── variables.data-00000-of-00002 │ │ │ ├── variables.data-00001-of-00002 │ │ │ └── variables.index │ ├── mnist_check.ipynb │ └── mnist_cnn.ipynb ├── new_test_2 │ ├── fa748b57262b.png │ ├── ffcf7b45f213.png │ └── ffec9a18a3ce.png ├── new_test_4 │ ├── 001639a390f0.png │ ├── 0318598cfd16.png │ └── ff8a0b45c789.png ├── new_train_2 │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png ├── new_train_4 │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png ├── newc.py ├── notes.txt ├── old-aptos-code │ ├── README.md │ ├── aptos.ipynb │ ├── basic-eda-train-test-image.ipynb │ ├── eda.ipynb │ ├── final_trained.csv │ ├── image-shape-distribution.ipynb │ ├── pipeline.py │ ├── prc_test.csv │ ├── preprocessing.py │ ├── sample_submission.csv │ ├── size_analysis.ipynb │ ├── test.csv │ ├── test_preporcessing.py │ └── train.csv ├── pipeline.py ├── prac_pipeline.py ├── prac_preprocessing.py ├── preprocessing.py ├── tf_dl.ipynb ├── train.csv └── useless.py └── webapp ├── README.md ├── app.py ├── image_predict.py ├── images └── 1.png ├── models ├── README.md └── models-to-download.txt ├── requirements.txt ├── static ├── main.css └── main.js ├── templates └── index.html └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Notes/imports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/Notes/imports.txt -------------------------------------------------------------------------------- /src/Notes/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/Notes/notes.txt -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/README.md -------------------------------------------------------------------------------- /src/kaggle-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/README.md -------------------------------------------------------------------------------- /src/kaggle-code/densenet-using-zoom.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/densenet-using-zoom.ipynb -------------------------------------------------------------------------------- /src/kaggle-code/effnet-b3-new.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/effnet-b3-new.ipynb -------------------------------------------------------------------------------- /src/kaggle-code/effnet-b5-complete_preprocessing-transfer_b5_old_new.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/effnet-b5-complete_preprocessing-transfer_b5_old_new.ipynb -------------------------------------------------------------------------------- /src/kaggle-code/effnet-b5-new.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/effnet-b5-new.ipynb -------------------------------------------------------------------------------- /src/kaggle-code/effnet-b5-old-new.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/effnet-b5-old-new.ipynb -------------------------------------------------------------------------------- /src/kaggle-code/ensemble.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/ensemble.ipynb -------------------------------------------------------------------------------- /src/kaggle-code/links_to_notebooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/links_to_notebooks.txt -------------------------------------------------------------------------------- /src/kaggle-code/sumbmission_checker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/kaggle-code/sumbmission_checker.ipynb -------------------------------------------------------------------------------- /src/practice-useless/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/0.png -------------------------------------------------------------------------------- /src/practice-useless/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/1.png -------------------------------------------------------------------------------- /src/practice-useless/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/2.png -------------------------------------------------------------------------------- /src/practice-useless/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/3.png -------------------------------------------------------------------------------- /src/practice-useless/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/4.png -------------------------------------------------------------------------------- /src/practice-useless/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/5.png -------------------------------------------------------------------------------- /src/practice-useless/contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/contour.py -------------------------------------------------------------------------------- /src/practice-useless/grayscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/grayscale.py -------------------------------------------------------------------------------- /src/practice-useless/imports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/imports.txt -------------------------------------------------------------------------------- /src/practice-useless/mnist/epic_num_reader.model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/mnist/epic_num_reader.model/saved_model.pb -------------------------------------------------------------------------------- /src/practice-useless/mnist/epic_num_reader.model/variables/variables.data-00000-of-00002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/mnist/epic_num_reader.model/variables/variables.data-00000-of-00002 -------------------------------------------------------------------------------- /src/practice-useless/mnist/epic_num_reader.model/variables/variables.data-00001-of-00002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/mnist/epic_num_reader.model/variables/variables.data-00001-of-00002 -------------------------------------------------------------------------------- /src/practice-useless/mnist/epic_num_reader.model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/mnist/epic_num_reader.model/variables/variables.index -------------------------------------------------------------------------------- /src/practice-useless/mnist/mnist_check.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/mnist/mnist_check.ipynb -------------------------------------------------------------------------------- /src/practice-useless/mnist/mnist_cnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/mnist/mnist_cnn.ipynb -------------------------------------------------------------------------------- /src/practice-useless/new_test_2/fa748b57262b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_test_2/fa748b57262b.png -------------------------------------------------------------------------------- /src/practice-useless/new_test_2/ffcf7b45f213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_test_2/ffcf7b45f213.png -------------------------------------------------------------------------------- /src/practice-useless/new_test_2/ffec9a18a3ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_test_2/ffec9a18a3ce.png -------------------------------------------------------------------------------- /src/practice-useless/new_test_4/001639a390f0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_test_4/001639a390f0.png -------------------------------------------------------------------------------- /src/practice-useless/new_test_4/0318598cfd16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_test_4/0318598cfd16.png -------------------------------------------------------------------------------- /src/practice-useless/new_test_4/ff8a0b45c789.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_test_4/ff8a0b45c789.png -------------------------------------------------------------------------------- /src/practice-useless/new_train_2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_train_2/1.png -------------------------------------------------------------------------------- /src/practice-useless/new_train_2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_train_2/2.png -------------------------------------------------------------------------------- /src/practice-useless/new_train_2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_train_2/3.png -------------------------------------------------------------------------------- /src/practice-useless/new_train_2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_train_2/4.png -------------------------------------------------------------------------------- /src/practice-useless/new_train_4/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_train_4/1.png -------------------------------------------------------------------------------- /src/practice-useless/new_train_4/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_train_4/2.png -------------------------------------------------------------------------------- /src/practice-useless/new_train_4/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_train_4/3.png -------------------------------------------------------------------------------- /src/practice-useless/new_train_4/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/new_train_4/4.png -------------------------------------------------------------------------------- /src/practice-useless/newc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/newc.py -------------------------------------------------------------------------------- /src/practice-useless/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/notes.txt -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/README.md -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/aptos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/aptos.ipynb -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/basic-eda-train-test-image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/basic-eda-train-test-image.ipynb -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/eda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/eda.ipynb -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/final_trained.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/final_trained.csv -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/image-shape-distribution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/image-shape-distribution.ipynb -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/pipeline.py -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/prc_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/prc_test.csv -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/preprocessing.py -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/sample_submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/sample_submission.csv -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/size_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/size_analysis.ipynb -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/test.csv -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/test_preporcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/test_preporcessing.py -------------------------------------------------------------------------------- /src/practice-useless/old-aptos-code/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/old-aptos-code/train.csv -------------------------------------------------------------------------------- /src/practice-useless/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/pipeline.py -------------------------------------------------------------------------------- /src/practice-useless/prac_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/prac_pipeline.py -------------------------------------------------------------------------------- /src/practice-useless/prac_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/prac_preprocessing.py -------------------------------------------------------------------------------- /src/practice-useless/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/preprocessing.py -------------------------------------------------------------------------------- /src/practice-useless/tf_dl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/tf_dl.ipynb -------------------------------------------------------------------------------- /src/practice-useless/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/train.csv -------------------------------------------------------------------------------- /src/practice-useless/useless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/practice-useless/useless.py -------------------------------------------------------------------------------- /src/webapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/README.md -------------------------------------------------------------------------------- /src/webapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/app.py -------------------------------------------------------------------------------- /src/webapp/image_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/image_predict.py -------------------------------------------------------------------------------- /src/webapp/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/images/1.png -------------------------------------------------------------------------------- /src/webapp/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/models/README.md -------------------------------------------------------------------------------- /src/webapp/models/models-to-download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/models/models-to-download.txt -------------------------------------------------------------------------------- /src/webapp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/requirements.txt -------------------------------------------------------------------------------- /src/webapp/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/static/main.css -------------------------------------------------------------------------------- /src/webapp/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/static/main.js -------------------------------------------------------------------------------- /src/webapp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/templates/index.html -------------------------------------------------------------------------------- /src/webapp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogendra-yatnalkar/Diabetic_Retinopathy_Detection/HEAD/src/webapp/util.py --------------------------------------------------------------------------------