shi-akihi commited on
Commit
18c4672
·
verified ·
1 Parent(s): 9461ab1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -16
README.md CHANGED
@@ -24,20 +24,18 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
- "codebase_version": "v2.1",
28
  "robot_type": "single_flexiv_rizon4",
29
  "total_episodes": 1,
30
  "total_frames": 141,
31
  "total_tasks": 1,
32
- "total_videos": 0,
33
- "total_chunks": 1,
34
  "chunks_size": 1000,
35
  "fps": 10,
36
  "splits": {
37
  "train": "0:1"
38
  },
39
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
- "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
  "features": {
42
  "image": {
43
  "dtype": "image",
@@ -50,7 +48,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
50
  "height",
51
  "width",
52
  "channel"
53
- ]
 
54
  },
55
  "wrist_image": {
56
  "dtype": "image",
@@ -63,7 +62,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
63
  "height",
64
  "width",
65
  "channel"
66
- ]
 
67
  },
68
  "state": {
69
  "dtype": "float32",
@@ -72,7 +72,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
72
  ],
73
  "names": [
74
  "state"
75
- ]
 
76
  },
77
  "actions": {
78
  "dtype": "float32",
@@ -81,7 +82,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
81
  ],
82
  "names": [
83
  "actions"
84
- ]
 
85
  },
86
  "value": {
87
  "dtype": "float32",
@@ -90,44 +92,52 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
90
  ],
91
  "names": [
92
  "value"
93
- ]
 
94
  },
95
  "timestamp": {
96
  "dtype": "float32",
97
  "shape": [
98
  1
99
  ],
100
- "names": null
 
101
  },
102
  "frame_index": {
103
  "dtype": "int64",
104
  "shape": [
105
  1
106
  ],
107
- "names": null
 
108
  },
109
  "episode_index": {
110
  "dtype": "int64",
111
  "shape": [
112
  1
113
  ],
114
- "names": null
 
115
  },
116
  "index": {
117
  "dtype": "int64",
118
  "shape": [
119
  1
120
  ],
121
- "names": null
 
122
  },
123
  "task_index": {
124
  "dtype": "int64",
125
  "shape": [
126
  1
127
  ],
128
- "names": null
 
129
  }
130
- }
 
 
131
  }
132
  ```
133
 
 
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
+ "codebase_version": "v3.0",
28
  "robot_type": "single_flexiv_rizon4",
29
  "total_episodes": 1,
30
  "total_frames": 141,
31
  "total_tasks": 1,
 
 
32
  "chunks_size": 1000,
33
  "fps": 10,
34
  "splits": {
35
  "train": "0:1"
36
  },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
  "features": {
40
  "image": {
41
  "dtype": "image",
 
48
  "height",
49
  "width",
50
  "channel"
51
+ ],
52
+ "fps": 10
53
  },
54
  "wrist_image": {
55
  "dtype": "image",
 
62
  "height",
63
  "width",
64
  "channel"
65
+ ],
66
+ "fps": 10
67
  },
68
  "state": {
69
  "dtype": "float32",
 
72
  ],
73
  "names": [
74
  "state"
75
+ ],
76
+ "fps": 10
77
  },
78
  "actions": {
79
  "dtype": "float32",
 
82
  ],
83
  "names": [
84
  "actions"
85
+ ],
86
+ "fps": 10
87
  },
88
  "value": {
89
  "dtype": "float32",
 
92
  ],
93
  "names": [
94
  "value"
95
+ ],
96
+ "fps": 10
97
  },
98
  "timestamp": {
99
  "dtype": "float32",
100
  "shape": [
101
  1
102
  ],
103
+ "names": null,
104
+ "fps": 10
105
  },
106
  "frame_index": {
107
  "dtype": "int64",
108
  "shape": [
109
  1
110
  ],
111
+ "names": null,
112
+ "fps": 10
113
  },
114
  "episode_index": {
115
  "dtype": "int64",
116
  "shape": [
117
  1
118
  ],
119
+ "names": null,
120
+ "fps": 10
121
  },
122
  "index": {
123
  "dtype": "int64",
124
  "shape": [
125
  1
126
  ],
127
+ "names": null,
128
+ "fps": 10
129
  },
130
  "task_index": {
131
  "dtype": "int64",
132
  "shape": [
133
  1
134
  ],
135
+ "names": null,
136
+ "fps": 10
137
  }
138
+ },
139
+ "data_files_size_in_mb": 100,
140
+ "video_files_size_in_mb": 200
141
  }
142
  ```
143