-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathensemble_inference_config.json
48 lines (48 loc) · 1.24 KB
/
ensemble_inference_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
{
"seed": 0,
"resize_type": "albumentations",
"num_process": 4,
"data_root": "../input/data",
"json_path": "../input/data/test.json",
"dataset": "TestDataset",
"dataloader": {
"args": {
"batch_size": 32,
"num_workers": 4,
"shuffle": false
}
},
"model_infos": [
{
"name": "Custom_Unet",
"args": {
"stride": 1,
"num_classes": 11
},
"weight_path": "./results/Custom_Unet_SGD+CA_aug+cnpv2_fold3/Custom_Unet_0.718_211031.pt",
"augmentation": "BaseAugmentation",
"tta": {
"name": "d4_transform",
"args": {}
}
},
{
"name": "Custom_Unet",
"args": {
"stride": 1,
"num_classes": 11
},
"weight_path": "./results/Custom_Unet_SGD+CA_aug+cnpv2_fold3/Custom_Unet_0.703_211031.pt",
"augmentation": "BaseAugmentation",
"tta": {
"name": "d4_transform",
"args": {}
}
}
],
"weight": [
0.5,
0.5
],
"output_path": "./ensemble_submission"
}