-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathae_config.json
53 lines (49 loc) · 1002 Bytes
/
ae_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
{
"name": "MultiDAE",
"n_gpu": 1,
"n_kfold": 5,
"n_users": 31360,
"n_items": 6807,
"arch": {
"type": "MultiDAE",
"args": {
"p_dims": [200, 600, 6807]
}
},
"data_loader": {
"type": "AEDataLoader",
"args":{
"batch_size": 64,
"shuffle": false,
"num_workers": 1
}
},
"optimizer": {
"type": "Adam",
"args":{
"lr": 0.001,
"weight_decay": 0,
"amsgrad": true
}
},
"loss": "nll_loss",
"metrics": [
"accuracy", "top_k_acc"
],
"lr_scheduler": {
"type": "StepLR",
"args": {
"step_size": 50,
"gamma": 0.1
}
},
"trainer": {
"epochs": 30,
"save_dir": "saved/",
"save_period": 1,
"verbosity": 2,
"monitor": "min val_loss",
"early_stop": 10,
"tensorboard": false
}
}