-
Notifications
You must be signed in to change notification settings - Fork 0
/
options_lip.toml
49 lines (42 loc) · 881 Bytes
/
options_lip.toml
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
title = "LipReading PyTorch"
[general]
usecudnn = true
usecudnnbenchmark = true
gpuid = "0"
loadpretrainedmodel = true
random_seed = 55
pretrainedmodelpath = 'weights/lrw1000_34.pt'
[input]
batchsize = 16
numworkers = 8
shuffle = true
[model]
type = "Finetune-label"
inputdim = 256
hiddendim = 256
numclasses = 1000
numlstms = 2
[training]
train = false
epochs = 1
startepoch = 0
statsfrequency = 100
data_root = 'LRW1000_Public/images'
index_root = 'LRW1000_Public/info/trn_1000.txt'
padding = 30
learningrate = 1e-3
momentum = 0.9
weightdecay = 0.003
save_prefix = "weights/tv_word_2000"
[validation]
validate = false
data_root = 'LRW1000_Public/images'
index_root = 'LRW1000_Public/info/val_1000.txt'
padding = 60
saveaccuracy = true
[test]
test = true
data_root = 'LRW1000_Public/images'
index_root = 'LRW1000_Public/info/tst_1000.txt'
padding = 60
saveaccuracy = true