GotThatData commited on
Commit
e777d37
·
verified ·
1 Parent(s): 4ebe08e
Files changed (1) hide show
  1. README.md +147 -3
README.md CHANGED
@@ -1,3 +1,147 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - object-detection
5
+ - robotics
6
+ language:
7
+ - en
8
+ tags:
9
+ - Robotics,
10
+ - AI,
11
+ pretty_name: FAFO
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+ # FAFO Dataset
16
+
17
+ The FAFO dataset is designed for universal robotics software development. It includes:
18
+ - Sensor data: LiDAR scans, GPS coordinates, and IMU readings.
19
+ - Image data: Infrared and camera images for object detection and navigation.
20
+ - 3D data: Point cloud files for SLAM and mapping.
21
+ - Task data: Pre-labeled tasks for robotic arm operations.
22
+
23
+ ## Dataset Overview
24
+
25
+ ### Sensor Data
26
+ - **LiDAR Data**: Point cloud scans with timestamps, ranges, intensities, and angles
27
+ - **GPS Data**: Precise location data including latitude, longitude, and altitude
28
+ - **IMU Data**: Acceleration, angular velocity, and orientation readings
29
+
30
+ ### Image Data
31
+ - RGB camera feeds
32
+ - Infrared images
33
+ - Object detection datasets with bounding box annotations
34
+
35
+ ### 3D Data
36
+ - Point cloud maps for SLAM
37
+ - 3D environment scans
38
+ - Occupancy grid maps
39
+
40
+ ### Task Data
41
+ - Pick-and-place task definitions
42
+ - Navigation paths
43
+ - Robot arm trajectories
44
+ - Task annotations and metadata
45
+
46
+ ## Dataset Structure
47
+ - `sensor_data/`: Contains JSON files for LiDAR, GPS, and IMU readings.
48
+ - `image_data/`: JPEG images for object detection and segmentation.
49
+ - `3d_data/`: PCD files for 3D point clouds.
50
+ - `task_data/`: JSON files for robotic tasks.
51
+
52
+ ## Usage
53
+ This dataset is designed for AI model training, sensor calibration, and robotic task automation.
54
+
55
+ ### Loading the Dataset
56
+ ```python
57
+ from datasets import load_dataset
58
+
59
+ # Load the complete dataset
60
+ dataset = load_dataset("GotThatData/fafo")
61
+
62
+ # Load specific splits
63
+ train_dataset = load_dataset("GotThatData/fafo", split="train")
64
+ val_dataset = load_dataset("GotThatData/fafo", split="validation")
65
+ test_dataset = load_dataset("GotThatData/fafo", split="test")
66
+ ```
67
+
68
+ ### Example Usage
69
+ ```python
70
+ # Access sensor data
71
+ lidar_scan = dataset['train'][0]['sensor_data']['lidar']
72
+ gps_reading = dataset['train'][0]['sensor_data']['gps']
73
+ imu_data = dataset['train'][0]['sensor_data']['imu']
74
+
75
+ # Access image data
76
+ image_path = dataset['train'][0]['image_data']
77
+
78
+ # Access 3D data
79
+ point_cloud = dataset['train'][0]['3d_data']
80
+
81
+ # Access task data
82
+ task = dataset['train'][0]['task_data']
83
+ ```
84
+
85
+ ## Data Format
86
+
87
+ ### Sensor Data
88
+ ```json
89
+ {
90
+ "lidar": {
91
+ "timestamp": 1640995200.0,
92
+ "ranges": [1.2, 2.3, 3.4],
93
+ "intensities": [0.5, 0.6, 0.7],
94
+ "angles": [0.0, 0.1, 0.2]
95
+ },
96
+ "gps": {
97
+ "timestamp": 1640995200.0,
98
+ "latitude": 37.7749,
99
+ "longitude": -122.4194,
100
+ "altitude": 0.0
101
+ },
102
+ "imu": {
103
+ "timestamp": 1640995200.0,
104
+ "acceleration": [0.0, 0.0, 9.81],
105
+ "angular_velocity": [0.0, 0.0, 0.0],
106
+ "orientation": [0.0, 0.0, 0.0, 1.0]
107
+ }
108
+ }
109
+ ```
110
+
111
+ ### Task Data
112
+ ```json
113
+ {
114
+ "task_type": "pick_and_place",
115
+ "parameters": {
116
+ "position": [0.5, 0.3, 0.2],
117
+ "orientation": [0.0, 0.0, 0.0, 1.0],
118
+ "gripper_state": "open"
119
+ },
120
+ "annotations": {
121
+ "object_class": "cube",
122
+ "bounding_box": [0.1, 0.1, 0.2, 0.2],
123
+ "confidence": 0.95
124
+ }
125
+ }
126
+ ```
127
+
128
+ ## Dataset Statistics
129
+ - Total samples: [Number of samples]
130
+ - Train/Val/Test split: 60%/20%/20%
131
+ - Data types:
132
+ - Sensor readings: [Number of readings]
133
+ - Images: [Number of images]
134
+ - 3D scans: [Number of scans]
135
+ - Task definitions: [Number of tasks]
136
+
137
+ ## License
138
+ MIT License
139
+
140
+ ## Citation
141
+ ```bibtex
142
+ @inproceedings{fafo2024,
143
+ title={FAFO Dataset},
144
+ author={GotThatData},
145
+ year={2024}
146
+ }
147
+ ```