Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 2.65 KB

File metadata and controls

49 lines (33 loc) · 2.65 KB

ADHD Classification with Reliable RELIEF

This repo contains the RRelief implementation that I researched and implemented during the time of my internship at Indian Statistical Institute, Kolkata.

My work

Implemented the research paper, 'Classification of ADHD Individuals and Neurotypicals Using Reliable RELIEF' where I wrote the code for an improved Reliable RELIEF algorithm from scratch. Also, I implemented several classifiers for ADHD classification models. Final goal of this project is to classify ADHD where the feature extraction process uses the Reliable RELIEF algorithm.

Relief algorithm

The core idea behind Relief algorithms is to estimate the quality of attributes on the basis of how well the attribute can distinguish between instances that are near to each other.

There are three Algorithms in the Relief Family:

  • Basic Relief algorithm: It is limited to classification problems with two classes.
  • ReliefF : Extension of Relief . Which can deal with multiclass problems.
  • RReliefF : Then ReliefF was adapted for continuous class (regression) problems resulting in RReliefF algorithm.

  • The results on other datasets show that this algorithm can perform better than other feature extraction methods. The implemented algorithm will be eventually deployed as a web application to detect ADHD individuals with higher accuracy in comparison to automatic state-of-the-art classsifiers.

├── LICENSE
├── Notebooks
│   ├── ADHD\ Classification.ipynb
│   └── ADHD.ipynb
├── README.md
├── assets
│   ├── ADHD-thumbnail.png
│   ├── fMRI-output.jpg
│   ├── paper.png
│   └── relief-algo.png
└── src
    ├── Amprion.csv
    ├── R-Relieff.py
    ├── computePCA.py
    ├── relief.py
    └── rrelief.py