Mirali33 commited on
Commit
2722c58
·
verified ·
1 Parent(s): 8d6f59a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +87 -58
README.md CHANGED
@@ -1,60 +1,89 @@
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: 16913669.0
17
- num_examples: 39
18
- - name: val
19
- num_bytes: 2674001.0
20
- num_examples: 6
21
- - name: test
22
- num_bytes: 1663345.0
23
- num_examples: 4
24
- - name: partition_train_0.50x_partition
25
- num_bytes: 8205103.769230769
26
- num_examples: 19
27
- - name: partition_train_0.20x_partition
28
- num_bytes: 2851027.230769231
29
- num_examples: 7
30
- - name: partition_train_0.05x_partition
31
- num_bytes: 501713.0
32
- num_examples: 1
33
- - name: partition_train_0.10x_partition
34
- num_bytes: 1177815.3846153845
35
- num_examples: 3
36
- - name: partition_train_0.25x_partition
37
- num_bytes: 3854454.153846154
38
- num_examples: 9
39
- download_size: 21588876
40
- dataset_size: 37841128.538461536
41
- configs:
42
- - config_name: default
43
- data_files:
44
- - split: train
45
- path: data/train-*
46
- - split: val
47
- path: data/val-*
48
- - split: test
49
- path: data/test-*
50
- - split: partition_train_0.50x_partition
51
- path: data/partition_train_0.50x_partition-*
52
- - split: partition_train_0.20x_partition
53
- path: data/partition_train_0.20x_partition-*
54
- - split: partition_train_0.05x_partition
55
- path: data/partition_train_0.05x_partition-*
56
- - split: partition_train_0.10x_partition
57
- path: data/partition_train_0.10x_partition-*
58
- - split: partition_train_0.25x_partition
59
- path: data/partition_train_0.25x_partition-*
60
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: mb-boulder_seg
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # mb-boulder_seg
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-15
32
+ * **Cite As:** TBD
33
+
34
+ ## Classes
35
+
36
+ This dataset contains the following classes:
37
+
38
+ - 0: Background
39
+ - 1: Boulder
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: 39 images
61
+ - val: 6 images
62
+ - test: 4 images
63
+ - partition_train_0.50x_partition: 19 images
64
+ - partition_train_0.20x_partition: 7 images
65
+ - partition_train_0.05x_partition: 1 images
66
+ - partition_train_0.10x_partition: 3 images
67
+ - partition_train_0.25x_partition: 9 images
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from datasets import load_dataset
73
+
74
+ dataset = load_dataset("Mirali33/mb-boulder_seg")
75
+ ```
76
+
77
+ ## Format
78
+
79
+ Each example in the dataset has the following format:
80
+
81
+ ```
82
+ {
83
+ 'image': Image(...), # PIL image
84
+ 'mask': Image(...), # PIL image of the segmentation mask
85
+ 'width': int, # Width of the image
86
+ 'height': int, # Height of the image
87
+ 'class_labels': [str,...] # List of class names present in the mask
88
+ }
89
+ ```