Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prachipatel15/detecting-parkinson-s-disease
In this Python Machine learning project, we will build a model using which we can accurately detect the presence of Parkinson’s disease in one’s body.
https://github.com/prachipatel15/detecting-parkinson-s-disease
data-science jupyter-notebook machine-learning python
Last synced: 2 days ago
JSON representation
In this Python Machine learning project, we will build a model using which we can accurately detect the presence of Parkinson’s disease in one’s body.
- Host: GitHub
- URL: https://github.com/prachipatel15/detecting-parkinson-s-disease
- Owner: PrachiPatel15
- Created: 2022-01-31T06:24:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-31T07:50:04.000Z (almost 3 years ago)
- Last Synced: 2023-05-30T19:34:58.267Z (over 1 year ago)
- Topics: data-science, jupyter-notebook, machine-learning, python
- Language: Jupyter Notebook
- Homepage: https://github.com/PrachiPatel15/Detecting-Parkinson-s-Disease
- Size: 256 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![](https://github.com/PrachiPatel15/Detecting-Parkinson-s-Disease/blob/main/disease.png)
> Parkinson’s disease is a progressive disorder of the central nervous system affecting movement and inducing tremors and stiffness.
This is chronic and has no cure yet. It is a neurodegenerative disorder affecting dopamine-producing neurons in the brain.# Detecting Parkinson's Disease: Project Overview
- Created a project in which we can accurately detect the presence of Parkinson’s disease in one’s body.
- Did feature scalling on the attributes.
- Build a model using XGBoost to predict the accurate result.# Code and Resources Used
- ***Python Version:*** 3.7
- ***Packages:*** pandas,XGBoost
- ***Dataset:*** https://archive.ics.uci.edu/ml/machine-learning-databases/parkinsons/# EDA
- In the data analysis part, we first initialize a MinMaxScaler and scale the features to between -1 and 1 to normalize them. The MinMaxScaler transforms features by scaling them to a given range. The fit_transform() method fits to the data and then transforms it.# Model Building
- In the model building part, we initialize an XGBClassifier and train the model. It falls under the category of Ensemble Learning in ML, where we train and predict using many models to produce one superior output.# Summary
- In this Python machine learning project, we learned to detect the presence of Parkinson’s Disease in individuals using various factors. We used an XGBClassifier for this and made use of the sklearn library to prepare the dataset. This gives us an accuracy of 94.87%, which is great considering the number of lines of code in this python project.