├── Aptfile ├── Procfile ├── README.md ├── app.py ├── model ├── spiral_model.pickle └── wave_model.pickle └── requirements.txt /Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelanjan00/Parkinsons-Detection/HEAD/Aptfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python app.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelanjan00/Parkinsons-Detection/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelanjan00/Parkinsons-Detection/HEAD/app.py -------------------------------------------------------------------------------- /model/spiral_model.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelanjan00/Parkinsons-Detection/HEAD/model/spiral_model.pickle -------------------------------------------------------------------------------- /model/wave_model.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelanjan00/Parkinsons-Detection/HEAD/model/wave_model.pickle -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelanjan00/Parkinsons-Detection/HEAD/requirements.txt --------------------------------------------------------------------------------