jordantencent commited on
Commit
6f1f75d
1 Parent(s): c77e8d7

Upload 2 files

Browse files
Files changed (2) hide show
  1. 00000189-checkpoint.pth.tar +3 -0
  2. vox-256-spade.yaml +88 -0
00000189-checkpoint.pth.tar ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbad01d46f0510276dc4521322dde6824a873a4222cd0740c85762e7067ea71d
3
+ size 2112619148
vox-256-spade.yaml ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ dataset_params:
2
+ root_dir:
3
+ frame_shape: [256, 256, 3]
4
+ id_sampling: True
5
+ pairs_list: None
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: 15
20
+ image_channel: 3
21
+ feature_channel: 32
22
+ estimate_jacobian: False
23
+ kp_detector_params:
24
+ temperature: 0.1
25
+ block_expansion: 32
26
+ max_features: 1024
27
+ scale_factor: 0.25
28
+ num_blocks: 5
29
+ reshape_channel: 16384 # 16384 = 1024 * 16
30
+ reshape_depth: 16
31
+ he_estimator_params:
32
+ block_expansion: 64
33
+ max_features: 2048
34
+ num_bins: 66
35
+ generator_params:
36
+ block_expansion: 64
37
+ max_features: 512
38
+ num_down_blocks: 2
39
+ reshape_channel: 32
40
+ reshape_depth: 16 # 512 = 32 * 16
41
+ num_resblocks: 6
42
+ estimate_occlusion_map: True
43
+ dense_motion_params:
44
+ block_expansion: 32
45
+ max_features: 1024
46
+ num_blocks: 5
47
+ # reshape_channel: 32
48
+ reshape_depth: 16
49
+ compress: 4
50
+ discriminator_params:
51
+ scales: [1]
52
+ block_expansion: 32
53
+ max_features: 512
54
+ num_blocks: 4
55
+ sn: True
56
+
57
+ train_params:
58
+ num_epochs: 200
59
+ num_repeats: 75
60
+ epoch_milestones: [180,]
61
+ lr_generator: 2.0e-4
62
+ lr_discriminator: 2.0e-4
63
+ lr_kp_detector: 2.0e-4
64
+ lr_he_estimator: 2.0e-4
65
+ gan_mode: 'hinge' # hinge or ls
66
+ batch_size: 1
67
+ scales: [1, 0.5, 0.25, 0.125]
68
+ checkpoint_freq: 60
69
+ hopenet_snapshot: './checkpoints/hopenet_robust_alpha1.pkl'
70
+ transform_params:
71
+ sigma_affine: 0.05
72
+ sigma_tps: 0.005
73
+ points_tps: 5
74
+ loss_weights:
75
+ generator_gan: 1
76
+ discriminator_gan: 1
77
+ feature_matching: [10, 10, 10, 10]
78
+ perceptual: [10, 10, 10, 10, 10]
79
+ equivariance_value: 10
80
+ equivariance_jacobian: 0
81
+ keypoint: 10
82
+ headpose: 20
83
+ expression: 5
84
+
85
+ visualizer_params:
86
+ kp_size: 5
87
+ draw_border: True
88
+ colormap: 'gist_rainbow'