├── Covid(GoogleColab).ipynb ├── Covid.ipynb ├── Procfile ├── README.md ├── app.py ├── covid.h5 ├── images ├── Covid.gif ├── acc-val.png ├── acc.png ├── covid.h5.png ├── covidimg.jpg └── loss.png ├── requirements.txt ├── static ├── css │ └── main.css └── js │ └── main.js └── templates ├── base.html └── index.html /Covid(GoogleColab).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/Covid(GoogleColab).ipynb -------------------------------------------------------------------------------- /Covid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/Covid.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/app.py -------------------------------------------------------------------------------- /covid.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/covid.h5 -------------------------------------------------------------------------------- /images/Covid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/images/Covid.gif -------------------------------------------------------------------------------- /images/acc-val.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/images/acc-val.png -------------------------------------------------------------------------------- /images/acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/images/acc.png -------------------------------------------------------------------------------- /images/covid.h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/images/covid.h5.png -------------------------------------------------------------------------------- /images/covidimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/images/covidimg.jpg -------------------------------------------------------------------------------- /images/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/images/loss.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/static/js/main.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthanpatel98/Covid-19-Detection/HEAD/templates/index.html --------------------------------------------------------------------------------