fhahn commited on
Commit
fc8a99d
·
verified ·
1 Parent(s): 717a0b5

Initial Commit

Browse files
Files changed (4) hide show
  1. README.md +31 -0
  2. data-00000-of-00001.arrow +3 -0
  3. dataset_info.json +18 -0
  4. state.json +13 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - object-detection
6
+ - robotics
7
+ - turtlebot
8
+ license: cc-by-4.0
9
+ datasets:
10
+ - turtlebot-detection-dataset-v1
11
+ ---
12
+
13
+ # TurtleBot Detection Dataset v1
14
+
15
+ ## Dataset Description
16
+ A curated dataset of **1,006 TurtleBot images** with **YOLO-format bounding box annotations** for object detection. Contains annotations for a single class (`Turtlebot`).
17
+
18
+ - **Homepage**: [https://huggingface.co/datasets/fhahn/turtlebot-detection-dataset-v1](https://huggingface.co/datasets/fhahn/turtlebot-detection-dataset-v1)
19
+ - **License**: [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/) (Attribution required)
20
+ - **Total Images**: 1,006
21
+ - **Classes**: `Turtlebot` (class ID: `0`)
22
+
23
+ ## Usage
24
+ ```python
25
+ from datasets import load_dataset
26
+
27
+ dataset = load_dataset("fhahn/turtlebot-detection-dataset-v1")
28
+
29
+ # Access the first example
30
+ print(dataset["train"][0]["image"]) # Image object
31
+ print(dataset["train"][0]["objects"]) # {"class": [0], "bbox": [[x_center, y_center, w, h]]}
data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f38e0bdf701354c89463db9be6e9e0bfe6b36ab238be53eee9b592f40fd841e7
3
+ size 186276432
dataset_info.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "If you use this dataset, please cite it as:\n\n@misc{turtlebot-detection-dataset-v1,\n author = {Fabian Hahn},\n title = {TurtleBot Detection Dataset v1},\n year = {2025},\n publisher = {Hugging Face},\n howpublished = {\\url{https://huggingface.co/datasets/fhahn/turtlebot-detection-dataset-v1}}\n}",
3
+ "description": "A dataset for TurtleBot detection with 1,006 annotated images in YOLO format. Contains bounding box annotations for a single class ('turtlebot'). Designed for robotics and object detection research.",
4
+ "features": {
5
+ "image": { "_type": "Image" },
6
+ "objects": {
7
+ "class": { "feature": { "dtype": "int32", "_type": "Value" }, "_type": "Sequence" },
8
+ "bbox": { "feature": { "feature": { "dtype": "float32", "_type": "Value" }, "_type": "Sequence" }, "_type": "Sequence" }
9
+ }
10
+ },
11
+ "homepage": "https://huggingface.co/datasets/fhahn/turtlebot-detection-dataset-v1/",
12
+ "license": "CC-BY-4.0",
13
+ "splits": {
14
+ "train": {
15
+ "num_examples": 1006
16
+ }
17
+ }
18
+ }
state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "920882d43b9a144f",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }