hyzhang01 commited on
Commit
aff3c8b
·
verified ·
1 Parent(s): b4abdcc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -19
README.md CHANGED
@@ -4,10 +4,6 @@ task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
- - robotics
8
- - franka
9
- - manipulation
10
- - pick-and-place
11
  configs:
12
  - config_name: default
13
  data_files: data/*/*.parquet
@@ -28,20 +24,18 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
28
  [meta/info.json](meta/info.json):
29
  ```json
30
  {
31
- "codebase_version": "v2.1",
32
  "robot_type": "panda",
33
  "total_episodes": 200,
34
  "total_frames": 33820,
35
  "total_tasks": 2,
36
- "total_videos": 0,
37
- "total_chunks": 1,
38
  "chunks_size": 1000,
39
  "fps": 10,
40
  "splits": {
41
  "train": "0:200"
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
  "image": {
47
  "dtype": "image",
@@ -54,7 +48,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
54
  "height",
55
  "width",
56
  "channel"
57
- ]
 
58
  },
59
  "wrist_image": {
60
  "dtype": "image",
@@ -67,7 +62,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
67
  "height",
68
  "width",
69
  "channel"
70
- ]
 
71
  },
72
  "state": {
73
  "dtype": "float32",
@@ -76,7 +72,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
76
  ],
77
  "names": [
78
  "state"
79
- ]
 
80
  },
81
  "actions": {
82
  "dtype": "float32",
@@ -85,44 +82,52 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
85
  ],
86
  "names": [
87
  "actions"
88
- ]
 
89
  },
90
  "timestamp": {
91
  "dtype": "float32",
92
  "shape": [
93
  1
94
  ],
95
- "names": null
 
96
  },
97
  "frame_index": {
98
  "dtype": "int64",
99
  "shape": [
100
  1
101
  ],
102
- "names": null
 
103
  },
104
  "episode_index": {
105
  "dtype": "int64",
106
  "shape": [
107
  1
108
  ],
109
- "names": null
 
110
  },
111
  "index": {
112
  "dtype": "int64",
113
  "shape": [
114
  1
115
  ],
116
- "names": null
 
117
  },
118
  "task_index": {
119
  "dtype": "int64",
120
  "shape": [
121
  1
122
  ],
123
- "names": null
 
124
  }
125
- }
 
 
126
  }
127
  ```
128
 
 
4
  - robotics
5
  tags:
6
  - LeRobot
 
 
 
 
7
  configs:
8
  - config_name: default
9
  data_files: data/*/*.parquet
 
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
+ "codebase_version": "v3.0",
28
  "robot_type": "panda",
29
  "total_episodes": 200,
30
  "total_frames": 33820,
31
  "total_tasks": 2,
 
 
32
  "chunks_size": 1000,
33
  "fps": 10,
34
  "splits": {
35
  "train": "0:200"
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
  "timestamp": {
89
  "dtype": "float32",
90
  "shape": [
91
  1
92
  ],
93
+ "names": null,
94
+ "fps": 10
95
  },
96
  "frame_index": {
97
  "dtype": "int64",
98
  "shape": [
99
  1
100
  ],
101
+ "names": null,
102
+ "fps": 10
103
  },
104
  "episode_index": {
105
  "dtype": "int64",
106
  "shape": [
107
  1
108
  ],
109
+ "names": null,
110
+ "fps": 10
111
  },
112
  "index": {
113
  "dtype": "int64",
114
  "shape": [
115
  1
116
  ],
117
+ "names": null,
118
+ "fps": 10
119
  },
120
  "task_index": {
121
  "dtype": "int64",
122
  "shape": [
123
  1
124
  ],
125
+ "names": null,
126
+ "fps": 10
127
  }
128
+ },
129
+ "data_files_size_in_mb": 100,
130
+ "video_files_size_in_mb": 500
131
  }
132
  ```
133