-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCambridgeLandmarks_config.json
66 lines (65 loc) · 1.46 KB
/
CambridgeLandmarks_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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"general": {
"n_freq_print": 5,
"n_freq_checkpoint": 10,
"n_workers": 4,
"device_id": "cuda:0"
},
"ems-transposenet":
{
"batch_size": 32,
"equalize_scenes": true,
"num_scenes": 4,
"learnable": true,
"s_x": -3.0,
"s_q": -6.5,
"lr": 1e-4,
"norm": 2,
"weight_decay": 1e-4,
"eps": 1e-10,
"lr_scheduler_gamma": 0.1,
"lr_scheduler_step_size": 200,
"n_epochs": 600,
"num_t_encoder_layers": 6,
"num_t_decoder_layers": 6,
"num_rot_encoder_layers": 6,
"num_rot_decoder_layers": 6,
"dim_feedforward": 256,
"hidden_dim":256,
"dropout": 0.1,
"nheads": 4,
"reduction": ["reduction_4", "reduction_3"],
"freeze": false,
"freeze_exclude_phrase": ["regressor_head_t", "transformer_t"],
"no_augment": true,
"single_scene": false,
"shallow_mlp": false,
"apply_positional_encoding": true,
"num_neighbors": 3,
"test_optim_iterations": 3,
"img_size": 64,
"refine_orientation": null
},
"posenet": {
"batch_size": 32,
"single_scene": true,
"num_neighbors": 3,
"learnable": true,
"s_x": -3.0,
"s_q": -6.5,
"norm": 2,
"lr": 1e-3,
"weight_decay": 1e-4,
"eps": 1e-10,
"lr_scheduler_step_size": 100,
"lr_scheduler_gamma": 0.5,
"n_epochs": 300,
"shallow_mlp": false,
"apply_positional_encoding": true,
"backbone_type": "mobilenet",
"hidden_dim": 256,
"test_optim_iterations": 3,
"num_neighbors": 3,
"single_scene": true
}
}