Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
a76439d
·
verified ·
1 Parent(s): 91ae569

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +65 -35
README.md CHANGED
@@ -1,37 +1,67 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: observation.images.image
5
- dtype: video_frame
6
- - name: language_instruction
7
- dtype: string
8
- - name: observation.state
9
- sequence: float32
10
- length: 1
11
- - name: action
12
- sequence: float32
13
- length: 4
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: 17712500
29
- num_examples: 100000
30
- download_size: 1140164
31
- dataset_size: 17712500
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": 1000,
16
+ "total_frames": 100000,
17
+ "total_tasks": 1,
18
+ "total_videos": 1000,
19
+ "total_chunks": 1,
20
+ "chunks_size": 1000,
21
+ "fps": 10,
22
+ "splits": {
23
+ "train": "0:1000"
24
+ },
25
+ "keys": [
26
+ "observation.state",
27
+ "action"
28
+ ],
29
+ "video_keys": [
30
+ "observation.images.image"
31
+ ],
32
+ "image_keys": [],
33
+ "shapes": {
34
+ "observation.state": 1,
35
+ "action": 4,
36
+ "observation.images.image": {
37
+ "width": 64,
38
+ "height": 64,
39
+ "channels": 3
40
+ }
41
+ },
42
+ "names": {
43
+ "observation.state": [
44
+ "motor_0"
45
+ ],
46
+ "action": [
47
+ "motor_0",
48
+ "motor_1",
49
+ "motor_2",
50
+ "motor_3"
51
+ ]
52
+ },
53
+ "videos": {
54
+ "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
55
+ "observation.images.image": {
56
+ "video.fps": 10.0,
57
+ "video.width": 64,
58
+ "video.height": 64,
59
+ "video.channels": 3,
60
+ "video.codec": "av1",
61
+ "video.pix_fmt": "yuv420p",
62
+ "video.is_depth_map": false,
63
+ "has_audio": false
64
+ }
65
+ }
66
+ }
67
+ ```