sanatem commited on
Commit
99cb238
·
verified ·
1 Parent(s): d6b67b6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +106 -0
README.md ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ pretty_name: FrodoBots-Mini-4K
4
+ task_categories:
5
+ - robotics
6
+ - other
7
+ tags:
8
+ - robotics
9
+ - teleoperation
10
+ - autonomous-driving
11
+ - sidewalk-robot
12
+ - multimodal
13
+ - video
14
+ - gps
15
+ - imu
16
+ size_categories:
17
+ - n>10K
18
+ ---
19
+
20
+ # FrodoBots-Mini-4K
21
+
22
+ **~4,000 hours** of real-world teleoperation data from **Earth Rover Mini / Mini+** sidewalk robots,
23
+ collected across 30+ countries. Each ride bundles synchronized **camera video** (front, and rear when
24
+ available), **two audio channels**, and time-aligned **GPS**, **IMU**, and **drive/control (DRV)** streams.
25
+
26
+ This is the third public FrodoBots dataset, following
27
+ [`BitRobot/FrodoBots-2K`](https://huggingface.co/datasets/BitRobot/FrodoBots-2K) and
28
+ [`BitRobot/Berkeley-FrodoBots-7K`](https://huggingface.co/datasets/BitRobot/Berkeley-FrodoBots-7K).
29
+ Like the 2K release it ships **raw, unannotated** per-ride folders (no task labels) — packaged here as
30
+ tar shards hosted directly on the Hub.
31
+
32
+ ## At a glance
33
+
34
+ | | |
35
+ |---|---|
36
+ | Rides | **14,141** |
37
+ | Robots | 453 |
38
+ | Countries | 30+ |
39
+ | Date range | 2024-12 → 2026-07 |
40
+ | Hours (teleoperation session time) | **3,965 h** (same metric as FrodoBots-2K/7K) |
41
+ | Front-camera video | 3,231 h |
42
+ | Rear-camera video | 1,909 h (73.9% of rides have a rear camera) |
43
+ | Total camera video | 5,140 h |
44
+ | Size | ~2.0 TB |
45
+
46
+ Every ride includes DRV + GPS + IMU + at least the front (or rear) camera with generated per-frame timestamps.
47
+
48
+ ## Layout
49
+
50
+ ```
51
+ data/
52
+ minirover-0000.tar # tar shards, <= ~1.9 GB each, each holds many complete ride folders
53
+ minirover-0001.tar
54
+ ...
55
+ metadata.parquet # one row per ride (see below)
56
+ ```
57
+
58
+ Each ride folder inside a shard:
59
+
60
+ ```
61
+ ride_<rideId>_<botRef>_<UTCstart>/
62
+ control_data_<id>.csv # DRV: linear, angular, rpm_1..4, timestamp (epoch SECONDS)
63
+ gps_data_<id>.csv # latitude, longitude, timestamp (epoch MS); (1000,1000)=no fix
64
+ imu_data_<id>.csv # compass, accelerometer, gyroscope (JSON arrays), timestamp (MS)
65
+ front_camera_timestamps_<id>.csv # frame_id, timestamp (epoch SECONDS)
66
+ rear_camera_timestamps_<id>.csv # present when a rear stream exists
67
+ mic_audio_timestamps_<id>.csv # robot microphone
68
+ speaker_audio_timestamps_<id>.csv # operator speaker
69
+ recordings/ # HLS: *.ts segments + *.m3u8 playlists (front/rear video, audio)
70
+ ```
71
+
72
+ `metadata.parquet` columns: `folder, ride_id, device_ref_id, start_utc, source, db_dur_sec, n_epochs,
73
+ hardware_version, drive_mode, country, city, front_footage_sec, rear_footage_sec, has_rear_camera,
74
+ has_control, has_gps, has_imu, has_front_ts, has_rear_ts, has_mic_ts, has_speaker_ts, shard`.
75
+
76
+ ## Usage
77
+
78
+ ```python
79
+ from huggingface_hub import hf_hub_download
80
+ import pandas as pd, tarfile
81
+
82
+ meta = pd.read_parquet(hf_hub_download("BitRobot/FrodoBots-Mini-4K", "metadata.parquet", repo_type="dataset"))
83
+ row = meta.iloc[0]
84
+ shard = hf_hub_download("BitRobot/FrodoBots-Mini-4K", f"data/{row.shard}", repo_type="dataset")
85
+ with tarfile.open(shard) as t:
86
+ t.extractall("out", members=[m for m in t.getmembers() if m.name.startswith(row.folder)])
87
+ # -> out/<ride folder>/ with CSVs + recordings/
88
+ ```
89
+
90
+ See `earth_rover_mini_dataset.ipynb` for stats, distributions, and a full "load one ride" example
91
+ (aligning a camera frame to its GPS/IMU/DRV readings).
92
+
93
+ ## Notes
94
+
95
+ - **Hours**: the headline counts teleoperation session duration (session end − start), the same basis as
96
+ FrodoBots-2K/7K. Actual recorded video is 3,231 h front / 5,140 h total (front+rear); a small number of
97
+ sessions were left open and slightly inflate raw session time.
98
+ - **Recordings** are de-vendored (Agora tags stripped) HLS. `.m3u8` playlists carry the wall-clock start
99
+ (`TIME=`) and per-segment durations; per-frame timestamps are provided in the `*_timestamps_*.csv` files.
100
+ - **GPS** retains `(1000,1000)` rows meaning "no fix" — filter these out before use.
101
+ - `country` is from the robot registry; robots without an entry are `Unknown`.
102
+ - Audio-only sessions (camera never streamed) are excluded.
103
+
104
+ ## License
105
+
106
+ Released under **CC BY-SA 4.0**, matching FrodoBots-2K and Berkeley-FrodoBots-7K. Please cite FrodoBots when using this dataset.