
lua
Sun7_She
这个作者很懒,什么都没留下…
展开
-
lua&torch教程记录
想使用torch就要学习lua,随意搜了几个,感觉这个教程最好,写得很清晰。 http://www.runoob.com/lua/lua-tutorial.html原创 2016-10-03 15:51:23 · 1978 阅读 · 0 评论 -
【深度学习】torch使用nngraph构建网络并训练
torch使用nngraph构建网络并训练 model = nn.Sequential() model:add(nn.Linear(3,5)) prl = nn.ConcatTable() prl:add(nn.Linear(5,1)) prl:add(nn.Linear(5,1)) model:add(prl) criterion = nn.ParallelCriter原创 2017-09-19 10:25:54 · 1321 阅读 · 1 评论