Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
8ef5d46
·
verified ·
1 Parent(s): 3481010

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +76 -35
README.md CHANGED
@@ -1,37 +1,78 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: observation.images.hand_image
5
- dtype: video_frame
6
- - name: language_instruction
7
- dtype: string
8
- - name: observation.state
9
- sequence: float32
10
- length: 8
11
- - name: action
12
- sequence: float32
13
- length: 8
14
- - name: timestamp
15
- dtype: float32
16
- - name: episode_index
17
- dtype: int64
18
- - name: frame_index
19
- dtype: int64
20
- - name: next.reward
21
- dtype: float32
22
- - name: next.done
23
- dtype: bool
24
- - name: index
25
- dtype: int64
26
- splits:
27
- - name: train
28
- num_bytes: 84465683
29
- num_examples: 392578
30
- download_size: 37918639
31
- dataset_size: 84465683
32
- configs:
33
- - config_name: default
34
- data_files:
35
- - split: train
36
- path: data/train-*
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ task_categories:
3
+ - robotics
4
+ tags:
5
+ - LeRobot
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  ---
7
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
8
+
9
+ [meta/info.json](meta/info.json)
10
+ ```json
11
+ {
12
+ "codebase_version": "v2.0",
13
+ "data_path": "data/chunk-{episode_chunk:03d}/train-{episode_index:05d}-of-{total_episodes:05d}.parquet",
14
+ "robot_type": "unknown",
15
+ "total_episodes": 908,
16
+ "total_frames": 392578,
17
+ "total_tasks": 4,
18
+ "total_videos": 908,
19
+ "total_chunks": 1,
20
+ "chunks_size": 1000,
21
+ "fps": 30,
22
+ "splits": {
23
+ "train": "0:908"
24
+ },
25
+ "keys": [
26
+ "observation.state",
27
+ "action"
28
+ ],
29
+ "video_keys": [
30
+ "observation.images.hand_image"
31
+ ],
32
+ "image_keys": [],
33
+ "shapes": {
34
+ "observation.state": 8,
35
+ "action": 8,
36
+ "observation.images.hand_image": {
37
+ "width": 640,
38
+ "height": 480,
39
+ "channels": 3
40
+ }
41
+ },
42
+ "names": {
43
+ "observation.state": [
44
+ "motor_0",
45
+ "motor_1",
46
+ "motor_2",
47
+ "motor_3",
48
+ "motor_4",
49
+ "motor_5",
50
+ "motor_6",
51
+ "motor_7"
52
+ ],
53
+ "action": [
54
+ "motor_0",
55
+ "motor_1",
56
+ "motor_2",
57
+ "motor_3",
58
+ "motor_4",
59
+ "motor_5",
60
+ "motor_6",
61
+ "motor_7"
62
+ ]
63
+ },
64
+ "videos": {
65
+ "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
66
+ "observation.images.hand_image": {
67
+ "video.fps": 30.0,
68
+ "video.width": 640,
69
+ "video.height": 480,
70
+ "video.channels": 3,
71
+ "video.codec": "av1",
72
+ "video.pix_fmt": "yuv420p",
73
+ "video.is_depth_map": false,
74
+ "has_audio": false
75
+ }
76
+ }
77
+ }
78
+ ```