https://github.com/sayakpaul/parkinson-s-disease-classifier
Deep learning experiments to design a model to predict Parkinson's diseases with the images of Spiral/Wave test
https://github.com/sayakpaul/parkinson-s-disease-classifier
computer-vision deep-learning fastai resnet-34
Last synced: 7 months ago
JSON representation
Deep learning experiments to design a model to predict Parkinson's diseases with the images of Spiral/Wave test
- Host: GitHub
- URL: https://github.com/sayakpaul/parkinson-s-disease-classifier
- Owner: sayakpaul
- Created: 2019-04-29T16:39:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T11:54:13.000Z (over 6 years ago)
- Last Synced: 2025-03-31T04:41:08.121Z (8 months ago)
- Topics: computer-vision, deep-learning, fastai, resnet-34
- Language: Jupyter Notebook
- Homepage:
- Size: 139 MB
- Stars: 16
- Watchers: 0
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Parkinson's Disease Classifier
[Adrian Rosebrock](https://www.linkedin.com/in/adrian-rosebrock-59b8732a) of [PyImageSearch](https://pyimagesearch.com/) recently released a brand new tutorial: [Detecting Parkinson’s Disease with OpenCV, Computer Vision, and the Spiral/Wave Test](https://www.pyimagesearch.com/2019/04/29/detecting-parkinsons-disease-with-opencv-computer-vision-and-the-spiral-wave-test/)
which shows how to automatically detect Parkinson’s disease in hand-drawn images of spirals and waves. Adrian used classical
computer vision techniques like _Histogram of Oriented Gradients (HOG)_ for quantifying the features of the images and
used them to train a _Random Forest Classifier_. He got an accuracy of **83.33%**.
I decided to apply deep learning to this problem and see if I can push the score. To see if I was able to do this, I would request you to take a look at the accompanying notebook [here](https://github.com/sayakpaul/Parkinson-s-Disease-Classifier/blob/master/Parkinson_s_Disease_Classifier.ipynb).
**Note** that, the data was provided along with the PyImageSearch tutorial mentioned above. In order to make the folder structure more convenient for myself, I arranged it in the following way:

Whereas, Adrian's arrangment was a bit different:

Useful links:
- [PyImageSearch Gurus](https://www.pyimagesearch.com/pyimagesearch-gurus/)
- [Practical Deep Learning for Coders, v3](https://course.fast.ai/index.html)