This project employs advanced machine learning algorithms to classify Alzheimer's Disease with high accuracy. By leveraging a dataset of cognitive and biological markers, the code achieves remarkable performance metrics, including:
- Accuracy: >80%
- Sensitivity: >80%
- Specificity: >80%
- F1 Score: >80%
The implementation is designed for ease of use and reproducibility, enabling researchers and practitioners to effectively diagnose Alzheimer's Disease.
- Implements a Multinomial Logistic Regression (MLR) & Multi-Layer Perceptron (MLP)
- Multi-class classification.
- Optimized hyperparameters for high performance.
- Outputs detailed evaluation metrics (accuracy, sensitivity, specificity, F1 score).
- Configurable for different datasets.
Layer (type) | Input Shape | Output Shape | Param # | Trainable |
---|---|---|---|---|
LogisticRegression | [8, 1, 237] | [8, 1, 3] | -- | True |
├─ Linear (linear) | [8, 1, 237] | [8, 1, 3] | 714 | True |
Total Parameters: 714
Trainable Parameters: 714
Non-trainable Parameters: 0
Total Mult-Adds (M): 0.01
Resource | Size (MB) |
---|---|
Input size | 0.01 |
Forward/backward pass size | 0.00 |
Params size | 0.00 |
Estimated Total Size | 0.01 |
Layer (type) | Input Shape | Output Shape | Param # | Trainable |
---|---|---|---|---|
MLP | [8, 1, 237] | [8, 1, 3] | -- | True |
├─ Linear (fc1) | [8, 1, 237] | [8, 1, 64] | 15,232 | True |
├─ Linear (fc2) | [8, 1, 64] | [8, 1, 64] | 4,160 | True |
├─ Linear (fc3) | [8, 1, 64] | [8, 1, 32] | 2,080 | True |
├─ Linear (fc4) | [8, 1, 32] | [8, 1, 32] | 1,056 | True |
├─ Linear (fc5) | [8, 1, 32] | [8, 1, 3] | 99 | True |
Total Parameters: 22,627
Trainable Parameters: 22,627
Non-trainable Parameters: 0
Total Mult-Adds (M): 0.18
Resource | Size (MB) |
---|---|
Input size | 0.01 |
Forward/backward pass size | 0.01 |
Params size | 0.09 |
Estimated Total Size | 0.11 |
This structure is neat, accessible, and easy to edit. Let me know if you’d like to make additional adjustments!
To run this project, install the following dependencies:
- Python 3.8+
- Required libraries (install via
requirements.txt
):pip install -r requirements.txt
The dataset used should include relevant features for Alzheimer's Disease classification. Ensure your dataset is in CSV format with appropriate preprocessing applied. The dataset template template has been added to the repository as Features-template.xlsx
git clone https://github.com/taha-parsayan/Classification-of-Alzheimers-Disease-using-AI-algorithms.git
cd Classification-of-Alzheimers-Disease-using-AI-algorithms
Place your dataset in the data/
directory. Modify the data loading section in main.py
to specify your dataset path and adjust preprocessing steps as needed.
Execute the script to train and evaluate the model:
python main.py
The results, including accuracy, sensitivity, specificity, and F1 score, will be displayed in the console and saved to results/
.
Classification-of-Alzheimers-Disease-using-AI-algorithms/
│
├── main.py # Main script for training and evaluation
├── data/ # Directory for the dataset
├── models/ # Directory for saving trained models
├── results/ # Directory for saving results
├── utils.py # Utility functions (if applicable)
└── requirements.txt # Required Python libraries
Metric | Value (%) |
---|---|
Accuracy | >80 |
Sensitivity | >80 |
Specificity | >80 |
F1 Score | >80 |
This project is licensed under the MIT License. See the LICENSE
file for details.
Taha Parsayan
Ph.D. Student in AI
For questions or collaborations, contact: GitHub Profile
Let me analyze the main.py
file to ensure this README reflects its functionality accurately. One moment!
The main.py
file appears to implement a deep learning pipeline for classifying Alzheimer's Disease. The initial inspection shows that it uses PyTorch for model implementation, along with several libraries for data preprocessing, statistical analysis, and evaluation metrics.
Here’s how the README should be adjusted based on these observations:
This project utilizes a PyTorch-based Multi-Layer Perceptron (MLP) to classify Alzheimer's Disease. The pipeline includes data preprocessing, statistical analysis, and robust evaluation metrics to ensure the model's effectiveness. With an emphasis on reproducibility and performance, this implementation achieves:
- Accuracy: >80%
- Sensitivity: >80%
- Specificity: >80%
- F1 Score: >80%
- PyTorch implementation of MLP for multi-class classification.
- Preprocessing and feature selection included.
- Statistical validation using libraries such as
scipy
andpingouin
. - Automated evaluation with comprehensive metrics.
Would you like me to analyze the entire file in detail to further refine this README?