aliberts HF staff commited on
Commit
97eadf3
·
verified ·
1 Parent(s): 310bbce

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +91 -37
README.md CHANGED
@@ -1,39 +1,93 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: observation.images.image
5
- dtype: video_frame
6
- - name: observation.images.wrist_image
7
- dtype: video_frame
8
- - name: language_instruction
9
- dtype: string
10
- - name: observation.state
11
- sequence: float32
12
- length: 8
13
- - name: action
14
- sequence: float32
15
- length: 7
16
- - name: timestamp
17
- dtype: float32
18
- - name: episode_index
19
- dtype: int64
20
- - name: frame_index
21
- dtype: int64
22
- - name: next.reward
23
- dtype: float32
24
- - name: next.done
25
- dtype: bool
26
- - name: index
27
- dtype: int64
28
- splits:
29
- - name: train
30
- num_bytes: 40397505
31
- num_examples: 146241
32
- download_size: 13967707
33
- dataset_size: 40397505
34
- configs:
35
- - config_name: default
36
- data_files:
37
- - split: train
38
- path: data/train-*
39
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 631,
16
+ "total_frames": 146241,
17
+ "total_tasks": 7,
18
+ "total_videos": 1262,
19
+ "total_chunks": 1,
20
+ "chunks_size": 1000,
21
+ "fps": 20,
22
+ "splits": {
23
+ "train": "0:631"
24
+ },
25
+ "keys": [
26
+ "observation.state",
27
+ "action"
28
+ ],
29
+ "video_keys": [
30
+ "observation.images.image",
31
+ "observation.images.wrist_image"
32
+ ],
33
+ "image_keys": [],
34
+ "shapes": {
35
+ "observation.state": 8,
36
+ "action": 7,
37
+ "observation.images.image": {
38
+ "width": 640,
39
+ "height": 360,
40
+ "channels": 3
41
+ },
42
+ "observation.images.wrist_image": {
43
+ "width": 320,
44
+ "height": 240,
45
+ "channels": 3
46
+ }
47
+ },
48
+ "names": {
49
+ "observation.state": [
50
+ "motor_0",
51
+ "motor_1",
52
+ "motor_2",
53
+ "motor_3",
54
+ "motor_4",
55
+ "motor_5",
56
+ "motor_6",
57
+ "motor_7"
58
+ ],
59
+ "action": [
60
+ "motor_0",
61
+ "motor_1",
62
+ "motor_2",
63
+ "motor_3",
64
+ "motor_4",
65
+ "motor_5",
66
+ "motor_6"
67
+ ]
68
+ },
69
+ "videos": {
70
+ "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
71
+ "observation.images.image": {
72
+ "video.fps": 20.0,
73
+ "video.width": 640,
74
+ "video.height": 360,
75
+ "video.channels": 3,
76
+ "video.codec": "av1",
77
+ "video.pix_fmt": "yuv420p",
78
+ "video.is_depth_map": false,
79
+ "has_audio": false
80
+ },
81
+ "observation.images.wrist_image": {
82
+ "video.fps": 20.0,
83
+ "video.width": 320,
84
+ "video.height": 240,
85
+ "video.channels": 3,
86
+ "video.codec": "av1",
87
+ "video.pix_fmt": "yuv420p",
88
+ "video.is_depth_map": false,
89
+ "has_audio": false
90
+ }
91
+ }
92
+ }
93
+ ```