gremlin97 commited on
Commit
1ab84e4
·
verified ·
1 Parent(s): 6615b8d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +82 -33
README.md CHANGED
@@ -1,35 +1,84 @@
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: 712358851.6
17
- num_examples: 3600
18
- - name: val
19
- num_bytes: 173422466.0
20
- num_examples: 900
21
- - name: test
22
- num_bytes: 169073024.0
23
- num_examples: 900
24
- download_size: 1052667866
25
- dataset_size: 1054854341.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_binary_segmentation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # crater_binary_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: Crater
40
+
41
+ ## Directory Structure
42
+
43
+ The dataset follows this structure:
44
+
45
+ ```
46
+ dataset/
47
+ ├── train/
48
+ │ ├── images/ # Image files
49
+ │ └── masks/ # Segmentation masks
50
+ ├── val/
51
+ │ ├── images/ # Image files
52
+ │ └── masks/ # Segmentation masks
53
+ ├── test/
54
+ │ ├── images/ # Image files
55
+ │ └── masks/ # Segmentation masks
56
+ ```
57
+
58
+ ## Statistics
59
+
60
+ - train: 3600 images
61
+ - val: 900 images
62
+ - test: 900 images
63
+
64
+ ## Usage
65
+
66
+ ```python
67
+ from datasets import load_dataset
68
+
69
+ dataset = load_dataset("gremlin97/crater_binary_segmentation")
70
+ ```
71
+
72
+ ## Format
73
+
74
+ Each example in the dataset has the following format:
75
+
76
+ ```
77
+ {
78
+ 'image': Image(...), # PIL image
79
+ 'mask': Image(...), # PIL image of the segmentation mask
80
+ 'width': int, # Width of the image
81
+ 'height': int, # Height of the image
82
+ 'class_labels': [str,...] # List of class names present in the mask
83
+ }
84
+ ```