AdwolfCzar commited on
Commit
bd7ba94
·
verified ·
1 Parent(s): 732a4cd

Upload training/configs/dataset_quick_train.toml with huggingface_hub

Browse files
training/configs/dataset_quick_train.toml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # MiniMax H3 quick run — mega_curated 3.9k clips, i2va, video-only (no audio in sources)
2
+ # Multi-resolution: three area buckets (mandatory for H3 — RoPE grid is area-normalized)
3
+ # Small/medium resolutions per user directive (1024x576 dropped).
4
+ # Sources normalized to 24 fps CFR, square pixels (SAR 1:1) in /workspace/datasets/mega_24
5
+
6
+ [general]
7
+ caption_extension = ".txt"
8
+ batch_size = 1
9
+ enable_bucket = true
10
+ bucket_no_upscale = true
11
+
12
+ # ~55% — low bucket (motion is cheap at low res)
13
+ [[datasets]]
14
+ video_directory = "/workspace/datasets/train_quick/v288"
15
+ cache_directory = "/workspace/cache/quick/v288"
16
+ resolution = [512, 288]
17
+ h3_target_mode = "video"
18
+ source_fps = 24.0
19
+ frame_extraction = "full"
20
+ max_frames = 124
21
+ num_repeats = 1
22
+
23
+ # ~28% — main bucket
24
+ [[datasets]]
25
+ video_directory = "/workspace/datasets/train_quick/v384"
26
+ cache_directory = "/workspace/cache/quick/v384"
27
+ resolution = [640, 384]
28
+ h3_target_mode = "video"
29
+ source_fps = 24.0
30
+ frame_extraction = "full"
31
+ max_frames = 124
32
+ num_repeats = 1
33
+
34
+ # ~17% — medium anchor (prevents low-density specialization)
35
+ [[datasets]]
36
+ video_directory = "/workspace/datasets/train_quick/v480"
37
+ cache_directory = "/workspace/cache/quick/v480"
38
+ resolution = [832, 480]
39
+ h3_target_mode = "video"
40
+ source_fps = 24.0
41
+ frame_extraction = "full"
42
+ max_frames = 124
43
+ num_repeats = 1