Add ADNI dataset and Alzheimer's Disease classification pipeline#921
Open
laubryan wants to merge 1 commit intosunlabuiuc:masterfrom
Open
Add ADNI dataset and Alzheimer's Disease classification pipeline#921laubryan wants to merge 1 commit intosunlabuiuc:masterfrom
laubryan wants to merge 1 commit intosunlabuiuc:masterfrom
Conversation
935d80b to
c85f2fe
Compare
the ADNI dataset and 3D-CNN model.
- Dataset: ADNIDataset
- Processor: NIftIImageProcessor
- Task: AlzheimersDiseaseClassification
- Model: AlzheimersDiseaseCNN
- Tests:
- TestADNIDataset
- TestAlzheimersDiseaseClassification
- TestAlzheimersDiseaseModel
- Examples:
- Python scripts
- Notebook
- RST Documentation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contributor
Contribution
This PR is a full pipeline implementation of the Alzheimer's Disease classification model described by Liu et al., consisting of dataset, task and model for ADNI MRI images dataset.
Paper
This work is an implementation of the methods and ideas presented in:
Description
This PR adds support for ADNI MRI brain scan images using a PyHealth-compatible dataset and processing via a compatible task and multi-class classification model, based on the paper "On the Design of Convolutional Neural Networks for Automatic Detection of Alzheimer's Disease" by Liu et al.
Changes
ADNIDatasetfor ADNI MRI images, with YAML configuration fileNIfTIImageProcessorfor NIftI MRI imagesAlzheimersDiseaseClassificationtaskAlzheimersDiseaseCNN3D CNN model for classificationFiles to Review
pyhealth/datasets/adni.pypyhealth/datasets/configs/adni.yamlpyhealth/processors/nifti_image_processor.pypyhealth/tasks/ad_classification.pypyhealth/models/alzheimers_cnn.pypyhealth/tests/core/test_adni.pypyhealth/examples/adni_adclassification_cnn.ipynbpyhealth/examples/adni_ad_classification.pypyhealth/examples/adni_ad_synthetic_data.pypyhealth/docs/api/datasets.rstpyhealth/docs/api/datasets/pyhealth.datasets.ADNIDataset.rstpyhealth/docs/api/processors.rstpyhealth/docs/api/processors/pyhealth.processors.NIftIImageProcessor.rstpyhealth/docs/api/tasks.rstpyhealth/docs/api/tasks/pyhealth.tasks.AlzheimersDiseaseClassification.rstpyhealth/docs/api/models.rstpyhealth/docs/api/models/pyhealth.models.AlzheimersDiseaseCNN.rstNotes