hawnsoung commited on
Commit
b7ca9ec
·
verified ·
1 Parent(s): b3eaf97

Delete meta/info.json1

Browse files
Files changed (1) hide show
  1. meta/info.json1 +0 -106
meta/info.json1 DELETED
@@ -1,106 +0,0 @@
1
- ---
2
- license: apache-2.0
3
- task_categories:
4
- - robotics
5
- tags:
6
- - LeRobot
7
- - so101
8
- - tutorial
9
- configs:
10
- - config_name: default
11
- data_files: data/*/*.parquet
12
- ---
13
-
14
- This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
-
16
- ## Dataset Description
17
-
18
- A recorded set of pick-and-place episodes with the SO101 follower arm:
19
- each episode contains synchronized video streams (front & side) plus joint & gripper states, collected at 30 FPS.
20
-
21
- - **Homepage:** [More Information Needed]
22
- - **Paper:** [More Information Needed]
23
- - **License:** apache-2.0
24
-
25
- ## Dataset Structure
26
-
27
- ### `meta/info.json`
28
-
29
- ```json
30
- {
31
- "codebase_version": "v2.1",
32
- "robot_type": "so101_follower",
33
- "total_episodes": 9,
34
- "total_frames": 1140,
35
- "total_tasks": 1,
36
- "total_videos": 18,
37
- "total_chunks": 1,
38
- "chunks_size": 1000,
39
- "fps": 30,
40
- "splits": {
41
- "train": "0:9"
42
- },
43
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
44
- "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
45
- "features": {
46
- "action": {
47
- "dtype": "float32",
48
- "shape": [6],
49
- "names": [
50
- "shoulder_pan.pos",
51
- "shoulder_lift.pos",
52
- "elbow_flex.pos",
53
- "wrist_flex.pos",
54
- "wrist_roll.pos",
55
- "gripper.pos"
56
- ]
57
- },
58
- "observation.state": {
59
- "dtype": "float32",
60
- "shape": [6],
61
- "names": [
62
- "shoulder_pan.pos",
63
- "shoulder_lift.pos",
64
- "elbow_flex.pos",
65
- "wrist_flex.pos",
66
- "wrist_roll.pos",
67
- "gripper.pos"
68
- ]
69
- },
70
- "observation.images.front": {
71
- "dtype": "video",
72
- "shape": [960, 1280, 3],
73
- "names": ["height","width","channels"],
74
- "info": {
75
- "video.height": 960,
76
- "video.width": 1280,
77
- "video.codec": "av1",
78
- "video.pix_fmt": "yuv420p",
79
- "video.is_depth_map": false,
80
- "video.fps": 30,
81
- "video.channels": 3,
82
- "has_audio": false
83
- }
84
- },
85
- "observation.images.side": {
86
- "dtype": "video",
87
- "shape": [960, 1280, 3],
88
- "names": ["height","width","channels"],
89
- "info": {
90
- "video.height": 960,
91
- "video.width": 1280,
92
- "video.codec": "av1",
93
- "video.pix_fmt": "yuv420p",
94
- "video.is_depth_map": false,
95
- "video.fps": 30,
96
- "video.channels": 3,
97
- "has_audio": false
98
- }
99
- },
100
- "timestamp": { "dtype": "float32", "shape": [1] },
101
- "frame_index": { "dtype": "int64", "shape": [1] },
102
- "episode_index": { "dtype": "int64", "shape": [1] },
103
- "index": { "dtype": "int64", "shape": [1] },
104
- "task_index": { "dtype": "int64", "shape": [1] }
105
- }
106
- }