-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.yaml
87 lines (71 loc) · 1.32 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
global:
save_root: './checkpoints'
exp_name: 'test-release'
dataset:
data_root: 'CustomHumans.h5'
num_samples: 20480
repeat_times: 8
optimizer:
lr_codebook: 0.0005
lr_decoder: 0.001
lr_dis: 0.001
beta1: 0.5
beta2: 0.999
train:
epochs: 5000
batch_size: 4
workers: 8
save_every: 50
log_every: 100
use_2d_from_epoch: 10
train_2d_every_iter: 1
use_nrm_dis: False
use_cached_pts: True
dictionary:
shape_dim: 32
color_dim: 32
feature_std: 0.1
feature_bias: 0.0
shape_pca_dim: 16
color_pca_dim: 16
network:
pos_dim: 3
c_dim: 3
num_layers: 4
hidden_dim: 128
skip:
- 2
activation: 'relu'
layer_type: 'none'
embedder:
shape_freq: 5
color_freq: 10
losses:
lambda_sdf: 100.
lambda_rgb: 10.
lambda_nrm: 10.
lambda_reg: 1.
gan_loss_type: 'logistic'
lambda_gan: 1.
lambda_grad: 10.
validation:
valid_every: 50
subdivide: True
grid_size: 400
width: 400
fov: 20.0
n_views: 10
wandb:
wandb: True
wandb_name: 'InstructHumans'
instruct_humans:
ip2p_device: None
ip2p_use_full_precision: False
show_edited_img: False
show_edited_img_freq: 20
load_edit_checkpoint: False
edit_checkpoint_file: 'checkpoint.pth.tar'
visualize_more: False
most_efficient: True
use_traced_point_dataset: True
traced_points_data_root: 'prepared_tracing.h5'