-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
43 lines (43 loc) · 1.22 KB
/
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
{
"train_params":
{
"quadrics": {
"n_points": "all",
"n_quadrics": 300,
"distance": "dist2",
"lr": 0.1,
"n_epoch": 50,
"device": "gpu",
"batch_size": 32,
"val_size": 5000
},
"quadrics_algebraic": {
"n_points": 80000,
"n_quadrics": 100,
"lr": 0.1,
"n_epoch": 50,
"device": "gpu",
"batch_size": 32,
"val_size": 5000
},
"OneClassSVM": {
"n_points": 2000,
"kernel": "poly",
"degree": 3
},
"PCA": {
"n_points": "all",
"n_components": 170
},
"norms": {}
},
"test_params": {
"normalize": 1,
"n_experiments": 20,
"proportion_of_outliers": 0.01
},
"models_to_calculate": ["quadrics", "OneClassSVM", "PCA", "norms"],
"datasets_to_calculate": ["megaface", "flickr"],
"models_dir": "./models",
"features_dir": "./features"
}