-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
42 lines (42 loc) · 1022 Bytes
/
config.json
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
{
"batch_size": 128,
"lattent_space_size": 1024,
"seed": 0,
"generator_params": {
"feature_hidden_size": 384,
"n_transformer_layers": 4,
"output_hidden_dim": 768,
"mapping_mlp_params": {
"layers": [],
"activation": "gelu",
"dropout_rate": 0.0
},
"transformer_params": {
"n_head": 4,
"attention_dropout_rate": 0.2,
"mlp_layers": [],
"mlp_activation": "relu",
"mlp_dropout": 0.2
}
},
"discriminator_params": {
"n_transformer_layers": 4,
"encoder_params": {
"patch_size": 8,
"overlap": 2,
"dropout_rate": 0.0
},
"transformer_params": {
"n_head": 4,
"attention_dropout_rate": 0.2,
"mlp_layers": [],
"mlp_activation": "relu",
"mlp_dropout": 0.2
},
"mapping_mlp_params": {
"layers": [],
"activation": "gelu",
"dropout_rate": 0.0
}
}
}