-
Notifications
You must be signed in to change notification settings - Fork 55
/
data_loader_didemo.json
94 lines (94 loc) · 2.25 KB
/
data_loader_didemo.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
{
"inherit_from": "configs/base_config.json",
"eval_mode": "test_run",
"experts": {
"face_dim": 512,
"ce_shared_dim": 768,
"modalities": [
"imagenet.resnext101_32x48d.0",
"imagenet.senet154.0",
"scene.densenet161.0",
"r2p1d.r2p1d-ig65m.0",
"i3d.i3d.0",
"face",
"ocr",
"audio",
"speech"
]
},
"arch": {
"args": {
"test_caption_mode": "indep",
"use_ce": "pairwise",
"use_mish": 1,
"use_bn_reason": 1,
"num_g_layers": 3,
"num_h_layers": 0,
"include_self": 1,
"l2renorm": false,
"randomise_feats": "",
"vlad_clusters": {
"ocr": 13,
"text": 8,
"audio": 16,
"speech": 55,
"detection-sem": 50
},
"ghost_clusters": {
"text": 0,
"ocr": 1,
"audio": 1,
"speech": 1
},
"mimic_ce_dims": 0
}
},
"data_loader": {
"args":{
"dataset_name": "DiDeMo",
"data_dir": "data/DiDeMo",
"batch_size": 64,
"split_name": "val",
"fuse_captions": true,
"num_test_captions": 1,
"max_tokens": {
"ocr": 8,
"text": 48,
"audio": 23,
"speech": 48,
"openpose": 50,
"detection": 12,
"detection-sem": 100
}
}
},
"trainer": {
"epochs": 30
},
"optimizer": {
"type": "Ranger",
"args": {
"lr": 0.1,
"weight_decay": 0.001
}
},
"loss": {
"type": "MaxMarginRankingLoss",
"args": {
"margin": 0.16642835966287484,
"fix_norm": true
}
},
"eval_settings": {
"data_loader": {
"args":{
"split_name": "test"
}
},
"tester": {
"save_dir": "data/saved/",
"verbosity": 2
},
"disable_gpu": true
}
}