-
Notifications
You must be signed in to change notification settings - Fork 70
/
train_mo.lua
295 lines (251 loc) · 9.31 KB
/
train_mo.lua
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
require 'nn'
require 'cunn'
require 'cudnn'
require 'optim'
require 'xlua'
dofile './provider.lua'
opt_string = [[
-h,--help print help
-s,--save (default "mo_logs") subdirectory to save logs
-b,--batchSize (default 64) batch size
-r,--learningRate (default 0.001) learning rate
--learningRateDecay (default 1e-7) learning rate decay
--weigthDecay (default 0.0005) weight decay
-m,--momentum (default 0.9) mementum
--epoch_step (default 20) epoch step
-g,--gpu_index (default 0) GPU index (start from 0)
--max_epoch (default 50) maximum number of epochs
--model (default 3dnin_fc) model name (voxnet, 3dnin, 3dnin_fc, subvolume_sup, aniprobing)
--model_param_file (default "logs/model.net") model parameter filename
--pool_layer_idx (default -1) pool output of the idx-th layer
--train_data (default "data/modelnet40_20x_stack/train_data.txt") txt file containing train h5 filenames
--test_data (default "data/modelnet40_20x_stack/test_data.txt") txt file containing test h5 filenames
]]
opt = lapp(opt_string)
-- print help or chosen options
if opt.help == true then
print('Usage: th train_mo.lua --model <modelname> --model_param_file <paramfile>')
print('Options:')
print(opt_string)
os.exit()
else
print(opt)
end
-- set gpu
cutorch.setDevice(opt.gpu_index+1)
print('Loading pretrained model...')
model = torch.load(opt.model_param_file):cuda()
print(model)
-- set criterion
unused, criterion = dofile('torch_models/'..opt.model..'.lua')
assert(#model == #unused) -- check for consistency
if not criterion then
criterion = nn.CrossEntropyCriterion():cuda()
end
-- construct pooling model from original one
if opt.pool_layer_idx < 1 then
print('Select max pooling from which layer\'s output, type in layer index:')
layer_idx = tonumber(io.read())
print(layer_idx)
else
layer_idx = opt.pool_layer_idx
end
model_copy = model:clone()
for i = 1,layer_idx do
model_copy:remove(1)
end
model_pool = model_copy:cuda()
model_pool:zeroGradParameters()
parameters, gradParameters = model_pool:getParameters()
print(model_pool)
print('Loading data...')
train_files = getDataFiles(opt.train_data)
test_files = getDataFiles(opt.test_data)
print(train_files)
print(test_files)
-- Extract train set features
train_data = {}
train_label = {}
train_cnt = 1
for file_idx = 1, #train_files do
current_data, current_label = loadDataFile(train_files[file_idx])
for t = 1,current_data:size(1) do
xlua.progress(t, current_data:size(1))
local inputs = current_data[t]:reshape(20,1,30,30,30) -- stack size is 20
target = current_label[t]
model:forward(inputs:cuda())
local features = model:get(layer_idx).output
max_pooled_feature = torch.max(features,1)
train_data[train_cnt] = max_pooled_feature
train_label[train_cnt] = target
train_cnt = train_cnt + 1
end
end
-- Extract test set features
test_data = {}
test_label = {}
test_cnt = 1
for file_idx = 1, #test_files do
current_data, current_label = loadDataFile(test_files[file_idx])
for t = 1,current_data:size(1) do
xlua.progress(t, current_data:size(1))
local inputs = current_data[t]:reshape(20,1,30,30,30)
target = current_label[t]
model:forward(inputs:cuda())
local features = model:get(layer_idx).output
max_pooled_feature = torch.max(features,1)
test_data[test_cnt] = max_pooled_feature
test_label[test_cnt] = target
test_cnt = test_cnt + 1
end
end
print(#train_data)
print(#test_data)
print('Starting to train multi-orientation pooling ...')
-- config for SGD solver
optimState = {
learningRate = opt.learningRate,
weightDecay = 0.00005,
momentum = 0.9,
learningRateDecay = 1e-7,
}
-- config logging
testLogger = optim.Logger(paths.concat(opt.save, 'test.log'))
testLogger:setNames{'% mean class accuracy (train set)', '% mean class accuracy (test set)'}
testLogger.showPlot = 'false'
-- confusion matrix
confusion = optim.ConfusionMatrix(40)
confusion:zero()
----------------------------------------
-- Training routine
--
model = model_pool
epoch_step = opt.epoch_step
batchSize = opt.batchSize
function train()
model:training()
epoch = epoch or 1 -- if epoch not defined, assign it as 1
if epoch % epoch_step == 0 then optimState.learningRate = optimState.learningRate/2 end
local tic = torch.tic()
local filesize = #train_data
local targets = torch.CudaTensor(batchSize)
local indices = torch.randperm(filesize):long():split(batchSize)
-- remove last mini-batch so that all the batches have equal size
indices[#indices] = nil
for t, v in ipairs(indices) do
xlua.progress(t, #indices)
local inputs = train_data[v[1]]
for i = 2,batchSize do
inputs = torch.cat(inputs, train_data[v[i]],1)
end
for i = 1,batchSize do
targets[i] = train_label[v[i]]
end
-- a function that takes single input and return f(x) and df/dx
local feval = function(x)
if x ~= parameters then parameters:copy(x) end
gradParameters:zero()
local outputs = model:forward(inputs)
local f = criterion:forward(outputs, targets)
local df_do = criterion:backward(outputs, targets)
model:backward(inputs, df_do) -- gradParameters in model have been updated
if torch.type(outputs) == 'table' then -- multiple outputs, take the last one
confusion:batchAdd(outputs[#outputs], targets)
else
confusion:batchAdd(outputs, targets)
end
return f, gradParameters
end
-- use SGD optimizer: parameters as input to feval will be updated
optim.sgd(feval, parameters, optimState)
end
confusion:updateValids()
print(('Train accuracy: '..'%.2f'..' %%\t time: %.2f s'):format(
confusion.totalValid * 100, torch.toc(tic)))
train_acc = confusion.totalValid * 100
confusion:zero()
epoch = epoch + 1
end
----------------------------------------
-- Test routine
--
function test()
-- disable flips, dropouts and batch normalization
model:evaluate()
local filesize = #test_data
local indices = torch.randperm(filesize):long():split(batchSize)
for t, v in ipairs(indices) do
local inputs = test_data[v[1]]
for i = 2,v:size(1) do
inputs = torch.cat(inputs, test_data[v[i]],1)
end
local targets = torch.CudaTensor(v:size(1))
for i = 1,v:size(1) do
targets[i] = test_label[v[i]]
end
local outputs = model:forward(inputs)
if torch.type(outputs) == 'table' then -- multiple outputs, take the last one
confusion:batchAdd(outputs[#outputs], targets)
else
confusion:batchAdd(outputs, targets)
end
end
confusion:updateValids()
print('Test accuracy:', confusion.totalValid * 100)
-- logging test result to txt and html files
if testLogger then
paths.mkdir(opt.save)
testLogger:add{train_acc, confusion.totalValid * 100}
testLogger:style{'-','-'}
testLogger:plot()
local base64im
do
os.execute(('convert -density 200 %s/test.log.eps %s/test.png'):format(opt.save,opt.save))
os.execute(('openssl base64 -in %s/test.png -out %s/test.base64'):format(opt.save,opt.save))
local f = io.open(opt.save..'/test.base64')
if f then base64im = f:read'*all' end
end
local file = io.open(opt.save..'/report.html','w')
file:write(([[
<!DOCTYPE html>
<html>
<body>
<title>%s - %s</title>
<img src="data:image/png;base64,%s">
<h4>optimState:</h4>
<table>
]]):format(opt.save,epoch,base64im))
for k,v in pairs(optimState) do
if torch.type(v) == 'number' then
file:write('<tr><td>'..k..'</td><td>'..v..'</td></tr>\n')
end
end
file:write'</table><pre>\n'
file:write(tostring(confusion)..'\n')
file:write(tostring(model)..'\n')
file:write'</pre></body></html>'
file:close()
end
-- save model every 10 epochs
if epoch % 10 == 0 then
local filename = paths.concat(opt.save, 'model.net')
print('==> saving model to '..filename)
-- torch.save(filename, model:get(3):clearState())
torch.save(filename, model)
end
-- save model every 10 epochs
if epoch % 10 == 0 then
local filename = paths.concat(opt.save, 'model.net')
print('==> saving model to '..filename)
-- torch.save(filename, model:get(3):clearState())
torch.save(filename, model)
end
confusion:zero()
end
----------------------------------------
-- Start training
--
for e = 1,opt.max_epoch do
train()
test()
end