gremlin97 commited on
Commit
8dd2b1c
·
verified ·
1 Parent(s): 94ca777

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +85 -33
README.md CHANGED
@@ -1,35 +1,87 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: mask
7
- dtype: image
8
- - name: width
9
- dtype: int64
10
- - name: height
11
- dtype: int64
12
- - name: class_labels
13
- sequence: string
14
- splits:
15
- - name: train
16
- num_bytes: 713272756.6
17
- num_examples: 3600
18
- - name: val
19
- num_bytes: 173679443.0
20
- num_examples: 900
21
- - name: test
22
- num_bytes: 169133397.0
23
- num_examples: 900
24
- download_size: 1053904545
25
- dataset_size: 1056085596.6
26
- configs:
27
- - config_name: default
28
- data_files:
29
- - split: train
30
- path: data/train-*
31
- - split: val
32
- path: data/val-*
33
- - split: test
34
- path: data/test-*
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - image-segmentation
18
+ task_ids:
19
+ - semantic-segmentation
20
+ pretty_name: crater_multi_segmentation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # crater_multi_segmentation
24
+
25
+ A segmentation dataset for planetary science applications.
26
+
27
+ ## Dataset Metadata
28
+
29
+ * **License:** CC-BY-4.0 (Creative Commons Attribution 4.0 International)
30
+ * **Version:** 1.0
31
+ * **Date Published:** 2025-05-11
32
+ * **Cite As:** TBD
33
+
34
+ ## Classes
35
+
36
+ This dataset contains the following classes:
37
+
38
+ - 0: Background
39
+ - 1: Other
40
+ - 2: Layered
41
+ - 3: Buried
42
+ - 4: Secondary
43
+
44
+ ## Directory Structure
45
+
46
+ The dataset follows this structure:
47
+
48
+ ```
49
+ dataset/
50
+ ├── train/
51
+ │ ├── images/ # Image files
52
+ │ └── masks/ # Segmentation masks
53
+ ├── val/
54
+ │ ├── images/ # Image files
55
+ │ └── masks/ # Segmentation masks
56
+ ├── test/
57
+ │ ├── images/ # Image files
58
+ │ └── masks/ # Segmentation masks
59
+ ```
60
+
61
+ ## Statistics
62
+
63
+ - train: 3600 images
64
+ - val: 900 images
65
+ - test: 900 images
66
+
67
+ ## Usage
68
+
69
+ ```python
70
+ from datasets import load_dataset
71
+
72
+ dataset = load_dataset("gremlin97/crater_multi_segmentation")
73
+ ```
74
+
75
+ ## Format
76
+
77
+ Each example in the dataset has the following format:
78
+
79
+ ```
80
+ {
81
+ 'image': Image(...), # PIL image
82
+ 'mask': Image(...), # PIL image of the segmentation mask
83
+ 'width': int, # Width of the image
84
+ 'height': int, # Height of the image
85
+ 'class_labels': [str,...] # List of class names present in the mask
86
+ }
87
+ ```