Load util before model for optimizeNet

\cc @melgor
This commit is contained in:
Brandon Amos 2016-04-03 02:48:50 -04:00
parent d3e0b7470a
commit 1b3b48f588
1 changed files with 1 additions and 1 deletions

View File

@ -26,10 +26,10 @@ torch.setdefaulttensortype('torch.FloatTensor')
torch.manualSeed(opt.manualSeed)
paths.dofile('data.lua')
paths.dofile('util.lua')
paths.dofile('model.lua')
paths.dofile('train.lua')
paths.dofile('test.lua')
paths.dofile('util.lua')
if opt.peoplePerBatch > nClasses then
print('\n\nError: opt.peoplePerBatch > number of classes. Please decrease this value.')