Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -9,5 +9,63 @@ app_file: app.py
|
|
9 |
pinned: false
|
10 |
license: apache-2.0
|
11 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
9 |
pinned: false
|
10 |
license: apache-2.0
|
11 |
---
|
12 |
+
# Alzheimer MRI Classification
|
13 |
+
|
14 |
+
This repository contains a Gradio application for classifying Alzheimer's disease stages from MRI images using a fine-tuned ResNet50 model. The application is deployed on Hugging Face Spaces.
|
15 |
+
|
16 |
+
## Table of Contents
|
17 |
+
- [Introduction](#introduction)
|
18 |
+
- [Model Details](#model-details)
|
19 |
+
- [Setup](#setup)
|
20 |
+
- [Usage](#usage)
|
21 |
+
- [Contributing](#contributing)
|
22 |
+
|
23 |
+
## Introduction
|
24 |
+
This application uses a convolutional neural network (ResNet50) to classify MRI images into one of four stages of Alzheimer's disease:
|
25 |
+
- Mild Demented
|
26 |
+
- Moderate Demented
|
27 |
+
- Non-Demented
|
28 |
+
- Very Mild Demented
|
29 |
+
|
30 |
+
The model is fine-tuned on a custom dataset and can be accessed through a user-friendly web interface powered by Gradio.
|
31 |
+
|
32 |
+
## Model Details
|
33 |
+
The model architecture is based on ResNet50, with the final fully connected layer adjusted to output predictions for 4 classes. The model is trained using PyTorch and fine-tuned on a dataset of MRI images.
|
34 |
+
|
35 |
+
## Setup
|
36 |
+
To run the application locally, follow these steps:
|
37 |
+
|
38 |
+
1. Clone the repository:
|
39 |
+
```bash
|
40 |
+
git clone https://github.com/your_username/alzheimer_mri_classification.git
|
41 |
+
cd alzheimer_mri_classification
|
42 |
+
```
|
43 |
+
|
44 |
+
2. Install the required dependencies:
|
45 |
+
```bash
|
46 |
+
pip install -r requirements.txt
|
47 |
+
```
|
48 |
+
|
49 |
+
3. Ensure you have the model file (`alzheimer_model_resnet50.pth`) in the root directory of the project. You can download it from [Hugging Face Hub](https://huggingface.co/your_username/alzheimer_model_resnet50).
|
50 |
+
|
51 |
+
4. Run the application:
|
52 |
+
```bash
|
53 |
+
python app.py
|
54 |
+
```
|
55 |
+
|
56 |
+
5. The Gradio interface will launch and can be accessed in your web browser at `http://127.0.0.1:7860`.
|
57 |
+
|
58 |
+
## Usage
|
59 |
+
Once the application is running, you can upload an MRI image through the web interface and get the predicted classification.
|
60 |
+
|
61 |
+
### Example Usage
|
62 |
+
1. Open the application in your browser.
|
63 |
+
2. Click on "Upload an MRI Image" to upload an image.
|
64 |
+
3. The application will display the predicted classification for the uploaded image.
|
65 |
+
|
66 |
+
|
67 |
+
## Contributing
|
68 |
+
Contributions are welcome! If you have any suggestions, bug reports, or feature requests, please open an issue or submit a pull request.
|
69 |
+
|
70 |
|
71 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|