err805 commited on
Commit
56d14df
·
verified ·
1 Parent(s): f86291c

Add custom dataset card for Glaucoma Detection

Browse files
Files changed (1) hide show
  1. README.md +34 -29
README.md CHANGED
@@ -1,31 +1,36 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype:
6
- image:
7
- decode: false
8
- - name: class
9
- dtype: string
10
- splits:
11
- - name: train
12
- num_bytes: 37436023
13
- num_examples: 2847
14
- - name: validation
15
- num_bytes: 16497609
16
- num_examples: 1259
17
- - name: test
18
- num_bytes: 16880918
19
- num_examples: 1272
20
- download_size: 71087365
21
- dataset_size: 70814550
22
- configs:
23
- - config_name: default
24
- data_files:
25
- - split: train
26
- path: data/train-*
27
- - split: validation
28
- path: data/validation-*
29
- - split: test
30
- path: data/test-*
31
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: "Glaucoma Detection"
3
+ size_categories:
4
+ - 1K<n<10K
5
+ task_categories:
6
+ - image-classification
7
+ tags:
8
+ - medical
9
+ - ophthalmology
10
+ - retina
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
+
13
+ # Glaucoma Detection
14
+
15
+ Retinal fundus images for glaucoma stage classification.
16
+
17
+ ## Splits
18
+
19
+ | Split | Samples |
20
+ |---|---:|
21
+ | train | 2847 |
22
+ | validation | 1259 |
23
+ | test | 1272 |
24
+
25
+ ## Columns
26
+
27
+ - `image`: retinal image
28
+ - `class`: glaucoma stage label
29
+
30
+ ## Classes
31
+
32
+ | Class | Description |
33
+ |---|---|
34
+ | `normal` | No glaucoma visible in the image. |
35
+ | `early` | Early-stage glaucoma findings. |
36
+ | `advanced` | Advanced glaucoma findings. |