Sraghvi commited on
Commit
70070a3
·
verified ·
1 Parent(s): 219eebc

Upload dataset matching Anthony's exact format

Browse files
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ language:
6
+ - en
7
+ tags:
8
+ - lerobot
9
+ - robotics
10
+ - so101
11
+ - anthony-format
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # Robot Dataset Matching Anthony's Format
17
+
18
+ Dataset with IDENTICAL structure to Anthony's working tfortunato/marker-pick dataset.
19
+
20
+ ## Format Details
21
+
22
+ - **Structure**: EXACT copy of tfortunato/marker-pick
23
+ - **Codebase**: v2.1 (like Anthony's)
24
+ - **Robot**: so101_follower (like Anthony's)
25
+ - **Files**: episode_000000.parquet (like Anthony's)
26
+ - **Metadata**: JSONL format (like Anthony's)
27
+ - **Features**: NO next.reward/done/success (like Anthony's)
28
+
29
+ ## Key Matches with Anthony's Dataset
30
+
31
+ ✅ File structure: data/chunk-000/episode_000000.parquet
32
+ ✅ Metadata: episodes.jsonl, tasks.jsonl, episodes_stats.jsonl
33
+ ✅ Columns: action, observation.state, timestamp, frame_index, episode_index, index, task_index
34
+ ✅ Codebase version: v2.1
35
+ ✅ Robot type: so101_follower
36
+ ✅ Data path pattern: episode_{episode_index:06d}.parquet
37
+
38
+ ## Data Features
39
+
40
+ - **action**: 14-DOF robot actions (like SO101)
41
+ - **observation.state**: 14-DOF robot state (like SO101)
42
+ - **Standard indexing**: timestamp, frame_index, episode_index, index, task_index
43
+ - **NO video features** (matches bag_all_0.db3 having no cameras)
44
+
45
+ ## Source
46
+
47
+ Based on real robot data structure from bag_all_0.db3.
48
+ Format exactly matches Anthony's working dataset.
data/chunk-000/episode_000000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dba7d45b9256ea10772ed98adf76c4b217f52a0ec1098916268a98ee687cf44
3
+ size 21061
meta/episodes.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"episode_index": 0, "seed": null, "total_frames": 100}
meta/episodes_stats.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"total_episodes": 1, "total_frames": 100, "min_episode_length": 100, "max_episode_length": 100, "mean_episode_length": 100}
meta/info.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v2.1",
3
+ "robot_type": "so101_follower",
4
+ "total_episodes": 1,
5
+ "total_frames": 100,
6
+ "total_tasks": 1,
7
+ "total_videos": 0,
8
+ "total_chunks": 1,
9
+ "chunks_size": 1000,
10
+ "fps": 30,
11
+ "splits": {
12
+ "train": "0:1"
13
+ },
14
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
15
+ "features": {
16
+ "action": {
17
+ "dtype": "float32",
18
+ "shape": [
19
+ 14
20
+ ],
21
+ "names": null
22
+ },
23
+ "observation.state": {
24
+ "dtype": "float32",
25
+ "shape": [
26
+ 14
27
+ ],
28
+ "names": null
29
+ },
30
+ "timestamp": {
31
+ "dtype": "float32",
32
+ "shape": [],
33
+ "names": null
34
+ },
35
+ "frame_index": {
36
+ "dtype": "int64",
37
+ "shape": [],
38
+ "names": null
39
+ },
40
+ "episode_index": {
41
+ "dtype": "int64",
42
+ "shape": [],
43
+ "names": null
44
+ },
45
+ "index": {
46
+ "dtype": "int64",
47
+ "shape": [],
48
+ "names": null
49
+ },
50
+ "task_index": {
51
+ "dtype": "int64",
52
+ "shape": [],
53
+ "names": null
54
+ }
55
+ }
56
+ }
meta/tasks.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"task_index": 0, "task": "robot_manipulation_from_bag"}