gremlin97 commited on
Commit
ac7edcc
·
verified ·
1 Parent(s): 36f6795

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +52 -80
README.md CHANGED
@@ -1,82 +1,54 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: width
7
- dtype: int64
8
- - name: height
9
- dtype: int64
10
- - name: yolo_annotation
11
- struct:
12
- - name: bbox
13
- sequence:
14
- sequence: float32
15
- - name: category
16
- sequence: string
17
- - name: coco_annotation
18
- struct:
19
- - name: image_id
20
- dtype: int64
21
- - name: annotations
22
- sequence:
23
- - name: id
24
- dtype: int64
25
- - name: image_id
26
- dtype: int64
27
- - name: category_id
28
- dtype: int64
29
- - name: bbox
30
- sequence: float32
31
- - name: area
32
- dtype: float32
33
- - name: pascal_voc_annotation
34
- struct:
35
- - name: filename
36
- dtype: string
37
- - name: size
38
- struct:
39
- - name: width
40
- dtype: int64
41
- - name: height
42
- dtype: int64
43
- - name: depth
44
- dtype: int64
45
- - name: objects
46
- sequence:
47
- - name: name
48
- dtype: string
49
- - name: difficult
50
- dtype: int64
51
- - name: bbox
52
- struct:
53
- - name: xmin
54
- dtype: int64
55
- - name: ymin
56
- dtype: int64
57
- - name: xmax
58
- dtype: int64
59
- - name: ymax
60
- dtype: int64
61
- splits:
62
- - name: train
63
- num_bytes: 9789525.0
64
- num_examples: 39
65
- - name: val
66
- num_bytes: 1530544.0
67
- num_examples: 6
68
- - name: test
69
- num_bytes: 960145.0
70
- num_examples: 4
71
- download_size: 11509472
72
- dataset_size: 12280214.0
73
- configs:
74
- - config_name: default
75
- data_files:
76
- - split: train
77
- path: data/train-*
78
- - split: val
79
- path: data/val-*
80
- - split: test
81
- path: data/test-*
82
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - < 1K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - object-detection
18
+ task_ids:
19
+ - instance-segmentation
20
+ pretty_name: boulder_detection
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # boulder_detection Dataset
24
+
25
+ An object detection dataset in YOLO format containing 3 splits: train, val, test.
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-16
32
+ * **Cite As:** TBD
33
+
34
+ ## Dataset Details
35
+
36
+ - Format: YOLO
37
+ - Splits: train, val, test
38
+
39
+ - Classes: boulder
40
+
41
+ ## Additional Formats
42
+
43
+ - Includes COCO format annotations
44
+ - Includes Pascal VOC format annotations
45
+
46
+ ## Data Format
47
+
48
+ This dataset is compatible with the CROISSANT metadata standard.
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+
53
+ dataset = load_dataset("gremlin97/boulder_detection")
54
+ ```