Arquivos
Brian Broll 822a4080e5 Modularized generated arch code. Fixes #40 (#42)
WIP #40 Updated overfeat devTest

Fixed setting values to null. WIP #40

WIP #40 Fixed attr name typos

WIP #40 Updated tests
2016-04-22 20:01:59 -05:00

10 linhas
159 B
Lua

require 'nn'
local net = nn.Sequential()
net:add(nn.Reshape(100))
net:add(nn.Linear(100, 300))
net:add(nn.HardTanh())
net:add(nn.Linear(300, 10))
return net