aliberts HF staff commited on
Commit
ab76a62
1 Parent(s): ce16252

Upload README.md with huggingface_hub

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