yuntian-deng commited on
Commit
7741417
·
1 Parent(s): b6e6a40

Upload 2e5_debug_gpt_firstframe_posmap_debugidentity.yaml

Browse files
2e5_debug_gpt_firstframe_posmap_debugidentity.yaml ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ save_path: saved_fixcursor_lr2e5_debug_gpt_firstframe_posmap_debugidentity
2
+
3
+ model:
4
+ base_learning_rate: 2.0e-05
5
+ target: latent_diffusion.ldm.models.diffusion.ddpm.LatentDiffusion
6
+ params:
7
+ linear_start: 0.0015
8
+ linear_end: 0.0195
9
+ num_timesteps_cond: 1
10
+ log_every_t: 200
11
+ timesteps: 1000
12
+ first_stage_key: image
13
+ cond_stage_key: action_
14
+ scheduler_sampling_rate: 0.0
15
+ hybrid_key: c_concat
16
+ image_size: 64
17
+ channels: 3
18
+ cond_stage_trainable: true
19
+ conditioning_key: hybrid
20
+ monitor: val/loss_simple_ema
21
+
22
+ unet_config:
23
+ target: latent_diffusion.ldm.modules.diffusionmodules.openaimodel.UNetModel
24
+ params:
25
+ image_size: 64
26
+ in_channels: 25
27
+ out_channels: 3
28
+ model_channels: 192
29
+ attention_resolutions:
30
+ - 8
31
+ - 4
32
+ - 2
33
+ num_res_blocks: 2
34
+ channel_mult:
35
+ - 1
36
+ - 2
37
+ - 3
38
+ - 5
39
+ num_head_channels: 32
40
+ use_spatial_transformer: true
41
+ transformer_depth: 1
42
+ context_dim: 768
43
+ first_stage_config:
44
+ target: latent_diffusion.ldm.models.autoencoder.IdentityFirstStage
45
+ params:
46
+ embed_dim: 3
47
+ n_embed: 8192
48
+
49
+ cond_stage_config:
50
+ target: latent_diffusion.ldm.modules.encoders.modules.GPTEmbedder
51
+ params:
52
+ n_embed: 768
53
+ n_layer: 12
54
+
55
+ data:
56
+ target: data.data_processing.datasets.DataModule
57
+ params:
58
+ batch_size: 32
59
+ num_workers: 1
60
+ wrap: false
61
+ shuffle: True
62
+ drop_last: True
63
+ pin_memory: True
64
+ prefetch_factor: 2
65
+ persistent_workers: True
66
+ train:
67
+ target: data.data_processing.datasets.ActionsData
68
+ params:
69
+ data_csv_path: train_dataset/train_dataset_14frames_firstframe.csv
70
+ validation:
71
+ target: data.data_processing.datasets.ActionsData
72
+ params:
73
+ data_csv_path: train_dataset/train_dataset_14frames_firstframe.csv
74
+
75
+ lightning:
76
+ trainer:
77
+ benchmark: False
78
+ max_epochs: 4
79
+ limit_val_batches: 0
80
+ accelerator: gpu
81
+ gpus: 1
82
+ accumulate_grad_batches: 4
83
+ gradient_clip_val: 1
84
+ checkpoint_callback: True