Spaces:
Runtime error
Runtime error
da03
commited on
Commit
·
e229951
1
Parent(s):
b2fd0a5
This view is limited to 50 files because it contains too many changes.
See raw diff
- config_rnn.yaml +109 -0
- record_100/image_20.png +0 -3
- record_100/image_200.png +0 -3
- record_100/image_201.png +0 -3
- record_100/image_202.png +0 -3
- record_100/image_203.png +0 -3
- record_100/image_204.png +0 -3
- record_100/image_205.png +0 -3
- record_100/image_206.png +0 -3
- record_100/image_207.png +0 -3
- record_100/image_208.png +0 -3
- record_100/image_209.png +0 -3
- record_100/image_21.png +0 -3
- record_100/image_210.png +0 -3
- record_100/image_211.png +0 -3
- record_100/image_212.png +0 -3
- record_100/image_213.png +0 -3
- record_100/image_214.png +0 -3
- record_100/image_215.png +0 -3
- record_100/image_216.png +0 -3
- record_100/image_217.png +0 -3
- record_100/image_218.png +0 -3
- record_100/image_219.png +0 -3
- record_100/image_22.png +0 -3
- record_100/image_220.png +0 -3
- record_100/image_221.png +0 -3
- record_100/image_222.png +0 -3
- record_100/image_223.png +0 -3
- record_100/image_224.png +0 -3
- record_100/image_225.png +0 -3
- record_100/image_226.png +0 -3
- record_100/image_227.png +0 -3
- record_100/image_228.png +0 -3
- record_100/image_229.png +0 -3
- record_100/image_7.png +0 -3
- record_100/image_70.png +0 -3
- record_100/image_700.png +0 -3
- record_100/image_701.png +0 -3
- record_100/image_702.png +0 -3
- record_100/image_703.png +0 -3
- record_100/image_704.png +0 -3
- record_100/image_705.png +0 -3
- record_100/image_706.png +0 -3
- record_100/image_707.png +0 -3
- record_100/image_708.png +0 -3
- record_100/image_709.png +0 -3
- record_100/image_71.png +0 -3
- record_100/image_710.png +0 -3
- record_100/image_711.png +0 -3
- record_100/image_712.png +0 -3
config_rnn.yaml
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
save_path: saved_standard_challenging_context32_nocond_cont_cont_all_cont_eval
|
2 |
+
|
3 |
+
model:
|
4 |
+
base_learning_rate: 8.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, 48]
|
17 |
+
channels: 3
|
18 |
+
cond_stage_trainable: false
|
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, 48]
|
26 |
+
in_channels: 8
|
27 |
+
out_channels: 4
|
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: false
|
41 |
+
transformer_depth: 1
|
42 |
+
|
43 |
+
temporal_encoder_config:
|
44 |
+
target: latent_diffusion.ldm.modules.encoders.temporal_encoder.TemporalEncoder
|
45 |
+
params:
|
46 |
+
input_channels: 6
|
47 |
+
hidden_size: 1024
|
48 |
+
num_layers: 1
|
49 |
+
dropout: 0.1
|
50 |
+
output_channels: 4
|
51 |
+
output_height: 48
|
52 |
+
output_width: 64
|
53 |
+
|
54 |
+
first_stage_config:
|
55 |
+
target: latent_diffusion.ldm.models.autoencoder.AutoencoderKL
|
56 |
+
params:
|
57 |
+
embed_dim: 4
|
58 |
+
monitor: val/rec_loss
|
59 |
+
ddconfig:
|
60 |
+
double_z: true
|
61 |
+
z_channels: 4
|
62 |
+
resolution: 256
|
63 |
+
in_channels: 3
|
64 |
+
out_ch: 3
|
65 |
+
ch: 128
|
66 |
+
ch_mult:
|
67 |
+
- 1
|
68 |
+
- 2
|
69 |
+
- 4
|
70 |
+
- 4
|
71 |
+
num_res_blocks: 2
|
72 |
+
attn_resolutions: []
|
73 |
+
dropout: 0.0
|
74 |
+
lossconfig:
|
75 |
+
target: torch.nn.Identity
|
76 |
+
|
77 |
+
cond_stage_config: __is_unconditional__
|
78 |
+
|
79 |
+
data:
|
80 |
+
target: data.data_processing.datasets.DataModule
|
81 |
+
params:
|
82 |
+
batch_size: 8
|
83 |
+
num_workers: 1
|
84 |
+
wrap: false
|
85 |
+
shuffle: True
|
86 |
+
drop_last: True
|
87 |
+
pin_memory: True
|
88 |
+
prefetch_factor: 2
|
89 |
+
persistent_workers: True
|
90 |
+
train:
|
91 |
+
target: data.data_processing.datasets.ActionsData
|
92 |
+
params:
|
93 |
+
data_csv_path: desktop_sequences_filtered_with_desktop_1.5k.challenging.train.target_frames.csv
|
94 |
+
normalization: standard
|
95 |
+
context_length: 32
|
96 |
+
#validation:
|
97 |
+
# target: data.data_processing.datasets.ActionsData
|
98 |
+
# params:
|
99 |
+
|
100 |
+
lightning:
|
101 |
+
trainer:
|
102 |
+
benchmark: False
|
103 |
+
max_epochs: 6400
|
104 |
+
limit_val_batches: 0
|
105 |
+
accelerator: gpu
|
106 |
+
gpus: 1
|
107 |
+
accumulate_grad_batches: 999999
|
108 |
+
gradient_clip_val: 1
|
109 |
+
checkpoint_callback: True
|
record_100/image_20.png
DELETED
Git LFS Details
|
record_100/image_200.png
DELETED
Git LFS Details
|
record_100/image_201.png
DELETED
Git LFS Details
|
record_100/image_202.png
DELETED
Git LFS Details
|
record_100/image_203.png
DELETED
Git LFS Details
|
record_100/image_204.png
DELETED
Git LFS Details
|
record_100/image_205.png
DELETED
Git LFS Details
|
record_100/image_206.png
DELETED
Git LFS Details
|
record_100/image_207.png
DELETED
Git LFS Details
|
record_100/image_208.png
DELETED
Git LFS Details
|
record_100/image_209.png
DELETED
Git LFS Details
|
record_100/image_21.png
DELETED
Git LFS Details
|
record_100/image_210.png
DELETED
Git LFS Details
|
record_100/image_211.png
DELETED
Git LFS Details
|
record_100/image_212.png
DELETED
Git LFS Details
|
record_100/image_213.png
DELETED
Git LFS Details
|
record_100/image_214.png
DELETED
Git LFS Details
|
record_100/image_215.png
DELETED
Git LFS Details
|
record_100/image_216.png
DELETED
Git LFS Details
|
record_100/image_217.png
DELETED
Git LFS Details
|
record_100/image_218.png
DELETED
Git LFS Details
|
record_100/image_219.png
DELETED
Git LFS Details
|
record_100/image_22.png
DELETED
Git LFS Details
|
record_100/image_220.png
DELETED
Git LFS Details
|
record_100/image_221.png
DELETED
Git LFS Details
|
record_100/image_222.png
DELETED
Git LFS Details
|
record_100/image_223.png
DELETED
Git LFS Details
|
record_100/image_224.png
DELETED
Git LFS Details
|
record_100/image_225.png
DELETED
Git LFS Details
|
record_100/image_226.png
DELETED
Git LFS Details
|
record_100/image_227.png
DELETED
Git LFS Details
|
record_100/image_228.png
DELETED
Git LFS Details
|
record_100/image_229.png
DELETED
Git LFS Details
|
record_100/image_7.png
DELETED
Git LFS Details
|
record_100/image_70.png
DELETED
Git LFS Details
|
record_100/image_700.png
DELETED
Git LFS Details
|
record_100/image_701.png
DELETED
Git LFS Details
|
record_100/image_702.png
DELETED
Git LFS Details
|
record_100/image_703.png
DELETED
Git LFS Details
|
record_100/image_704.png
DELETED
Git LFS Details
|
record_100/image_705.png
DELETED
Git LFS Details
|
record_100/image_706.png
DELETED
Git LFS Details
|
record_100/image_707.png
DELETED
Git LFS Details
|
record_100/image_708.png
DELETED
Git LFS Details
|
record_100/image_709.png
DELETED
Git LFS Details
|
record_100/image_71.png
DELETED
Git LFS Details
|
record_100/image_710.png
DELETED
Git LFS Details
|
record_100/image_711.png
DELETED
Git LFS Details
|
record_100/image_712.png
DELETED
Git LFS Details
|