Skip to content

rahilmehta-24/Parkinson-Disease-Detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Parkinson-Disease-Detection (Python Machine Learning Project)

About this project.

In this Python machine learning project, using the Python libraries scikit-learn, numpy, pandas, and xgboost, we will build a model using an XGBClassifier. We’ll load the data, get the features and labels, scale the features, then split the dataset, build an XGBClassifier, and then calculate the accuracy of our model.

What is Parkinson’s Disease?

Parkinson’s disease is a progressive disorder of the central nervous system affecting movement and inducing tremors and stiffness. It has 5 stages to it and affects more than 1 million individuals every year in India. This is chronic and has no cure yet. It is a neurodegenerative disorder affecting dopamine-producing neurons in the brain.

Libraries used

  1. NumPy
  2. Pandas
  3. Matplotlib
  4. Seaborn
  5. Sklearn
  6. XGBoost

What is XGBoost ?

XGBoost is a new Machine Learning algorithm designed with speed and performance in mind. XGBoost stands for eXtreme Gradient Boosting and is based on decision trees. In this project, I have imported the XGBClassifier from the xgboost library; this is an implementation of the scikit-learn API for XGBoost classification.

What is MinMaxScaler ?

The MinMaxScaler transforms features by scaling them to a given range.