abhisheksensharma commited on
Commit
6fec33b
·
verified ·
1 Parent(s): bdd2867

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -7
README.md CHANGED
@@ -2,6 +2,13 @@
2
  license: other
3
  license_name: gg800-subset
4
  license_link: LICENSE
 
 
 
 
 
 
 
5
  size_categories:
6
  - 1K<n<10K
7
  task_categories:
@@ -41,11 +48,15 @@ Each clip follows a fixed format:
41
 
42
  - resolution: **720p**
43
  - frame rate: **12 FPS**
44
- - clip length: **360 frames** (30 seconds)
45
- - `events.jsonl`: **exactly 360 lines**, one per frame
46
 
47
  So the alignment invariant is strict:
48
- **frame `i` in video <-> line `i` in `events.jsonl`** for `i = 0..359`.
 
 
 
 
49
 
50
  ---
51
 
@@ -54,8 +65,8 @@ So the alignment invariant is strict:
54
  Each row corresponds to one clip directory with three assets:
55
 
56
  - `video` (`.mkv`)
57
- - `events_srt` (`.srt`)
58
- - `events_jsonl` (`.jsonl`)
59
 
60
  In `events.jsonl`, each line includes:
61
 
@@ -88,8 +99,8 @@ ds = load_dataset("lucidml/GG800-Subset", split="train")
88
  sample = ds[0]
89
 
90
  video_path = sample["video"] # path or HF file handle (depending on loader setup)
91
- srt_path = sample["events_srt"]
92
- jsonl_path = sample["events_jsonl"]
93
 
94
  with open(jsonl_path, "r", encoding="utf-8") as f:
95
  first_event = json.loads(f.readline())
 
2
  license: other
3
  license_name: gg800-subset
4
  license_link: LICENSE
5
+ configs:
6
+ - config_name: default
7
+ data_files:
8
+ - split: train
9
+ path:
10
+ - train/metadata.csv
11
+ - train/**/capture.mkv
12
  size_categories:
13
  - 1K<n<10K
14
  task_categories:
 
48
 
49
  - resolution: **720p**
50
  - frame rate: **12 FPS**
51
+ - clip length: **384 frames** (32 seconds)
52
+ - `events.jsonl`: **exactly 384 lines**, one per frame
53
 
54
  So the alignment invariant is strict:
55
+ **frame `i` in video <-> line `i` in `events.jsonl`** for `i = 0..383`.
56
+
57
+ Practical note: the first ~2 seconds (~24 frames) may include scene/asset loading artifacts in some clips.
58
+ For model training/inference pipelines, a common practice is to skip these initial frames and use the final **360** frames.
59
+ Even when you apply this trim, action logs remain perfectly synchronized with frames by index.
60
 
61
  ---
62
 
 
65
  Each row corresponds to one clip directory with three assets:
66
 
67
  - `video` (`.mkv`)
68
+ - `srt_file_name` (`.srt`)
69
+ - `action_file_name` (`.jsonl`)
70
 
71
  In `events.jsonl`, each line includes:
72
 
 
99
  sample = ds[0]
100
 
101
  video_path = sample["video"] # path or HF file handle (depending on loader setup)
102
+ srt_path = sample["srt_file_name"]
103
+ jsonl_path = sample["action_file_name"]
104
 
105
  with open(jsonl_path, "r", encoding="utf-8") as f:
106
  first_event = json.loads(f.readline())