Falah commited on
Commit
4cbc450
·
1 Parent(s): df7c049
Files changed (1) hide show
  1. README.md +63 -2
README.md CHANGED
@@ -20,7 +20,68 @@ dataset_info:
20
  num_examples: 1280
21
  download_size: 28289848
22
  dataset_size: 28198238.28
 
 
 
 
 
 
 
 
 
 
23
  ---
24
- # Dataset Card for "Alzheimer_MRI"
25
 
26
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  num_examples: 1280
21
  download_size: 28289848
22
  dataset_size: 28198238.28
23
+ license: apache-2.0
24
+ task_categories:
25
+ - image-classification
26
+ language:
27
+ - en
28
+ tags:
29
+ - medical
30
+ pretty_name: Alzheimer_MRI Disease Classification Dataset
31
+ size_categories:
32
+ - 1K<n<10K
33
  ---
34
+ # Alzheimer_MRI Disease Classification Dataset
35
 
36
+ The Falah/Alzheimer_MRI Disease Classification dataset is a valuable resource for researchers and health medicine applications. This dataset focuses on the classification of Alzheimer's disease based on MRI scans. The dataset consists of brain MRI images labeled into four categories:
37
+
38
+ - '0': Mild_Demented
39
+ - '1': Moderate_Demented
40
+ - '2': Non_Demented
41
+ - '3': Very_Mild_Demented
42
+
43
+ ## Dataset Information
44
+
45
+ - Train split:
46
+ - Name: train
47
+ - Number of bytes: 22,560,791.2
48
+ - Number of examples: 5,120
49
+
50
+ - Test split:
51
+ - Name: test
52
+ - Number of bytes: 5,637,447.08
53
+ - Number of examples: 1,280
54
+
55
+ - Download size: 28,289,848 bytes
56
+ - Dataset size: 28,198,238.28 bytes
57
+
58
+ ## Citation
59
+
60
+ If you use this dataset in your research or health medicine applications, we kindly request that you cite the following publication:
61
+
62
+ @misc{falah_dataset_alzheimer_MRI,
63
+ author = {Falah G.Salieh},
64
+ title = {Falah/Alzheimer_MRI Disease Classification Dataset},
65
+ year = {2023},
66
+ publisher = {Falah Research Institute},
67
+ howpublished = {\url{https://huggingface.co/datasets/Falah/Alzheimer_MRI}},
68
+ note = {Dataset available from Hugging Face Datasets},
69
+ }
70
+
71
+
72
+ ## Usage Example
73
+
74
+ Here's an example of how to load the dataset using the Hugging Face library:
75
+
76
+ ```python
77
+ from datasets import load_dataset
78
+
79
+ # Load the Falah/Alzheimer_MRI dataset
80
+ dataset = load_dataset('falah_alzheimer_mri', split='train')
81
+
82
+ # Print the number of examples and the first few samples
83
+ print("Number of examples:", len(dataset))
84
+ print("Sample data:")
85
+ for example in dataset[:5]:
86
+ print(example)
87
+ ```