ART-3D commited on
Commit
0c32cd8
·
verified ·
1 Parent(s): 0d4bd49

Upload stage2_slat/config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. stage2_slat/config.json +91 -0
stage2_slat/config.json ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "models": {
3
+ "denoiser": {
4
+ "name": "ControlledSLatFlowModel",
5
+ "args": {
6
+ "resolution": 64,
7
+ "in_channels": 8,
8
+ "out_channels": 8,
9
+ "model_channels": 1024,
10
+ "cond_channels": 1024,
11
+ "num_blocks": 24,
12
+ "num_heads": 16,
13
+ "mlp_ratio": 4,
14
+ "patch_size": 2,
15
+ "num_io_res_blocks": 2,
16
+ "io_block_channels": [
17
+ 128
18
+ ],
19
+ "pe_mode": "ape",
20
+ "qk_rms_norm": true,
21
+ "use_fp16": true
22
+ }
23
+ }
24
+ },
25
+ "dataset": {
26
+ "name": "H3DOriSLatImage",
27
+ "args": {
28
+ "h3d_root_path": "/mnt/zsn/zsn_workspace/PartCraft3D/data/H3D_v1",
29
+ "split": "train",
30
+ "edit_types": [
31
+ "scale",
32
+ "modification",
33
+ "addition",
34
+ "deletion"
35
+ ],
36
+ "final_pass_only": false,
37
+ "image_size": 518,
38
+ "mask_sidecar_root": "/mnt/zsn/zsn_workspace/Ori3DEdit_wjw/outputs/mask_sidecars"
39
+ }
40
+ },
41
+ "trainer": {
42
+ "name": "EditingControlNetImageSparseFlowMatchingCFGTrainer",
43
+ "args": {
44
+ "max_steps": 100000,
45
+ "batch_split": 2,
46
+ "optimizer": {
47
+ "name": "AdamW",
48
+ "args": {
49
+ "lr": 0.00012,
50
+ "weight_decay": 0.0
51
+ }
52
+ },
53
+ "ema_rate": [
54
+ 0.9999
55
+ ],
56
+ "fp16_mode": "inflat_all",
57
+ "fp16_scale_growth": 0.001,
58
+ "grad_clip": {
59
+ "name": "AdaptiveGradClipper",
60
+ "args": {
61
+ "max_norm": 1.0,
62
+ "clip_percentile": 95
63
+ }
64
+ },
65
+ "i_print": 50,
66
+ "i_log": 50,
67
+ "i_sample": 99999,
68
+ "i_save": 5000,
69
+ "p_uncond": 0.1,
70
+ "t_schedule": {
71
+ "name": "logitNormal",
72
+ "args": {
73
+ "mean": 1.0,
74
+ "std": 1.0
75
+ }
76
+ },
77
+ "sigma_min": 1e-05,
78
+ "image_cond_model": "dinov2_vitl14_reg",
79
+ "controlnet_pretrain": "./pretrain/slat_flow_img_dit_L_64l8p2_fp16.safetensors",
80
+ "batch_size": 16,
81
+ "batch_size_per_gpu": 8,
82
+ "dataloader_num_workers": 2,
83
+ "dataloader_pin_memory": true,
84
+ "dataloader_persistent_workers": true,
85
+ "use_mask_loss": true,
86
+ "use_slat_mask_loss": true,
87
+ "lambda_slat_mask": 0.3,
88
+ "disable_mask_loss_for_global_style": true
89
+ }
90
+ }
91
+ }