opengraph-labs commited on
Commit
9400264
·
verified ·
1 Parent(s): c0fc08f

Fix: Add missing video_path and data_path fields for LeRobot visualizer compatibility

Browse files
Files changed (1) hide show
  1. meta/info.json +13 -34
meta/info.json CHANGED
@@ -8,38 +8,28 @@
8
  "total_videos": 20,
9
  "total_chunks": 1,
10
  "chunks_size": 1000,
 
 
11
  "features": {
12
  "episode_index": {
13
  "dtype": "int64",
14
- "shape": [
15
- 1
16
- ]
17
  },
18
  "frame_index": {
19
  "dtype": "int64",
20
- "shape": [
21
- 1
22
- ]
23
  },
24
  "timestamp": {
25
  "dtype": "float32",
26
- "shape": [
27
- 1
28
- ]
29
  },
30
  "task_index": {
31
  "dtype": "int64",
32
- "shape": [
33
- 1
34
- ]
35
  },
36
  "observation.images.egocentric": {
37
  "dtype": "video",
38
- "shape": [
39
- 1080,
40
- 1920,
41
- 3
42
- ],
43
  "video_info": {
44
  "video.fps": 30.0,
45
  "video.codec": "av1",
@@ -50,38 +40,27 @@
50
  },
51
  "observation.state.hand_joints": {
52
  "dtype": "float32",
53
- "shape": [
54
- 150
55
- ]
56
  },
57
  "observation.state.finger_angles": {
58
  "dtype": "float32",
59
- "shape": [
60
- 40
61
- ]
62
  },
63
  "observation.state.gestures": {
64
  "dtype": "float32",
65
- "shape": [
66
- 26
67
- ]
68
  },
69
  "observation.state.imu": {
70
  "dtype": "float32",
71
- "shape": [
72
- 6
73
- ]
74
  }
75
  },
76
  "depth": {
77
  "path": "depth/episode_{episode_index:06d}.bin",
78
  "dtype": "uint16",
79
- "shape": [
80
- 400,
81
- 640
82
- ],
83
  "unit": "mm",
84
  "storage": "episode-based",
85
  "description": "Raw 16-bit depth preserved per episode"
86
  }
87
- }
 
8
  "total_videos": 20,
9
  "total_chunks": 1,
10
  "chunks_size": 1000,
11
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
12
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
13
  "features": {
14
  "episode_index": {
15
  "dtype": "int64",
16
+ "shape": [1]
 
 
17
  },
18
  "frame_index": {
19
  "dtype": "int64",
20
+ "shape": [1]
 
 
21
  },
22
  "timestamp": {
23
  "dtype": "float32",
24
+ "shape": [1]
 
 
25
  },
26
  "task_index": {
27
  "dtype": "int64",
28
+ "shape": [1]
 
 
29
  },
30
  "observation.images.egocentric": {
31
  "dtype": "video",
32
+ "shape": [1080, 1920, 3],
 
 
 
 
33
  "video_info": {
34
  "video.fps": 30.0,
35
  "video.codec": "av1",
 
40
  },
41
  "observation.state.hand_joints": {
42
  "dtype": "float32",
43
+ "shape": [150]
 
 
44
  },
45
  "observation.state.finger_angles": {
46
  "dtype": "float32",
47
+ "shape": [40]
 
 
48
  },
49
  "observation.state.gestures": {
50
  "dtype": "float32",
51
+ "shape": [26]
 
 
52
  },
53
  "observation.state.imu": {
54
  "dtype": "float32",
55
+ "shape": [6]
 
 
56
  }
57
  },
58
  "depth": {
59
  "path": "depth/episode_{episode_index:06d}.bin",
60
  "dtype": "uint16",
61
+ "shape": [400, 640],
 
 
 
62
  "unit": "mm",
63
  "storage": "episode-based",
64
  "description": "Raw 16-bit depth preserved per episode"
65
  }
66
+ }