generated from victoresque/pytorch-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
129 lines (129 loc) · 3.07 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "Outfits Transformer",
"n_gpu": 1,
"arch": {
"type": "OutfitsTransformer",
"args": {
"n_categories": 11,
"d_model": 640,
"n_heads": 8,
"n_layers": 6,
"dropout": 0.0
}
},
"data_loader": {
"type": "PolyvoreDataLoader",
"args": {
"split": "train",
"data_dir": "data/",
"is_disjoint": true,
"categories": [
"all-body",
"bags",
"tops",
"outerwear",
"hats",
"bottoms",
"scarves",
"jewellery",
"accessories",
"shoes",
"sunglasses"
],
"masked_ratio": 0.9,
"batch_size": 512,
"shuffle": true,
"num_workers": 1
}
},
"val_data_loader": {
"type": "PolyvoreDataLoader",
"args": {
"split": "valid",
"data_dir": "data/",
"is_disjoint": true,
"categories": [
"all-body",
"bags",
"tops",
"outerwear",
"hats",
"bottoms",
"scarves",
"jewellery",
"accessories",
"shoes",
"sunglasses"
],
"masked_ratio": 0.0,
"batch_size": 512,
"shuffle": true,
"num_workers": 1
}
},
"test_data_loader": {
"type": "PolyvoreDataLoader",
"args": {
"split": "test",
"data_dir": "data/",
"is_disjoint": true,
"categories": [
"all-body",
"bags",
"tops",
"outerwear",
"hats",
"bottoms",
"scarves",
"jewellery",
"accessories",
"shoes",
"sunglasses"
],
"masked_ratio": 0.0,
"batch_size": 512,
"shuffle": false,
"num_workers": 1
}
},
"test_benchmark_data_loader": {
"type": "PolyvoreBenchmarkDataLoader",
"args": {
"data_dir": "data/",
"is_disjoint": true,
"batch_size": 512,
"shuffle": false,
"num_workers": 1
}
},
"optimizer": {
"type": "AdamW",
"args": {
"lr": 1e-4,
"weight_decay": 0.3
}
},
"loss": "contrastive",
"metrics": [
"recall_at1",
"recall_at5",
"recall_at10",
"recall_at30",
"recall_at50"
],
"lr_scheduler": {
"type": "StepLR",
"args": {
"step_size": 20,
"gamma": 0.5
}
},
"trainer": {
"epochs": 200,
"save_dir": "saved/",
"save_period": 1,
"verbosity": 2,
"monitor": "max val_recall_at10",
"early_stop": -1
}
}