DmitrMakeev
commited on
Commit
•
f94a524
1
Parent(s):
0628165
Upload 2 files
Browse files- config_file/audio2kp.yaml +3 -0
- config_file/vox-256.yaml +83 -0
config_file/audio2kp.yaml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
embedding_dim: 256
|
2 |
+
num_kp: 10
|
3 |
+
num_w: 5
|
config_file/vox-256.yaml
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
dataset_params:
|
2 |
+
root_dir: /root/wsz/data/vex_image
|
3 |
+
frame_shape: [256, 256, 3]
|
4 |
+
id_sampling: True
|
5 |
+
pairs_list: data/vox256.csv
|
6 |
+
augmentation_params:
|
7 |
+
flip_param:
|
8 |
+
horizontal_flip: True
|
9 |
+
time_flip: True
|
10 |
+
jitter_param:
|
11 |
+
brightness: 0.1
|
12 |
+
contrast: 0.1
|
13 |
+
saturation: 0.1
|
14 |
+
hue: 0.1
|
15 |
+
|
16 |
+
|
17 |
+
model_params:
|
18 |
+
common_params:
|
19 |
+
num_kp: 10
|
20 |
+
num_channels: 3
|
21 |
+
estimate_jacobian: True
|
22 |
+
kp_detector_params:
|
23 |
+
temperature: 0.1
|
24 |
+
block_expansion: 32
|
25 |
+
max_features: 1024
|
26 |
+
scale_factor: 0.25
|
27 |
+
num_blocks: 5
|
28 |
+
generator_params:
|
29 |
+
block_expansion: 64
|
30 |
+
max_features: 512
|
31 |
+
num_down_blocks: 2
|
32 |
+
num_bottleneck_blocks: 6
|
33 |
+
estimate_occlusion_map: True
|
34 |
+
dense_motion_params:
|
35 |
+
block_expansion: 64
|
36 |
+
max_features: 1024
|
37 |
+
num_blocks: 5
|
38 |
+
scale_factor: 0.25
|
39 |
+
discriminator_params:
|
40 |
+
scales: [1]
|
41 |
+
block_expansion: 32
|
42 |
+
max_features: 512
|
43 |
+
num_blocks: 4
|
44 |
+
sn: True
|
45 |
+
|
46 |
+
train_params:
|
47 |
+
num_epochs: 100
|
48 |
+
num_repeats: 50
|
49 |
+
epoch_milestones: [5, 20, 30]
|
50 |
+
lr_generator: 2.0e-4
|
51 |
+
lr_discriminator: 2.0e-4
|
52 |
+
lr_kp_detector: 2.0e-4
|
53 |
+
batch_size: 36
|
54 |
+
scales: [1, 0.5, 0.25, 0.125]
|
55 |
+
checkpoint_freq: 10
|
56 |
+
transform_params:
|
57 |
+
sigma_affine: 0.05
|
58 |
+
sigma_tps: 0.005
|
59 |
+
points_tps: 5
|
60 |
+
loss_weights:
|
61 |
+
generator_gan: 0
|
62 |
+
discriminator_gan: 1
|
63 |
+
feature_matching: [10, 10, 10, 10]
|
64 |
+
perceptual: [10, 10, 10, 10, 10]
|
65 |
+
equivariance_value: 10
|
66 |
+
equivariance_jacobian: 10
|
67 |
+
|
68 |
+
reconstruction_params:
|
69 |
+
num_videos: 1000
|
70 |
+
format: '.mp4'
|
71 |
+
|
72 |
+
animate_params:
|
73 |
+
num_pairs: 50
|
74 |
+
format: '.mp4'
|
75 |
+
normalization_params:
|
76 |
+
adapt_movement_scale: False
|
77 |
+
use_relative_movement: True
|
78 |
+
use_relative_jacobian: True
|
79 |
+
|
80 |
+
visualizer_params:
|
81 |
+
kp_size: 5
|
82 |
+
draw_border: True
|
83 |
+
colormap: 'gist_rainbow'
|