加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
init.lua 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
require 'nn'
require 'graph'
nngraph = {}
require('nngraph.nest')
require('nngraph.node')
require('nngraph.gmodule')
require('nngraph.graphinspecting')
require('nngraph.JustElement')
require('nngraph.JustTable')
require('nngraph.ModuleFromCriterion')
-- handy functions
local utils = require('nngraph.utils')
local istensor = torch.isTensor
local istable = utils.istable
local istorchclass = utils.istorchclass
-- simpler todot functions
nngraph.simple_print = require('nngraph.simple_print')
-- Modify the __call function to hack into nn.Module
local Module = torch.getmetatable('nn.Module')
function Module:__call__(...)
local nArgs = select("#", ...)
assert(nArgs <= 1, 'Use {input1, input2} to pass multiple inputs.')
local input = ...
if nArgs == 1 and input == nil then
error(utils.expectingNodeErrorMessage(input, 'inputs', 1))
end
-- Disallow passing empty table, in case someone passes a table with some
-- typo'd variable name in.
if type(input) == 'table' and next(input) == nil then
error('cannot pass an empty table of inputs. To indicate no incoming ' ..
'connections, leave the second set of parens blank.')
end
if not istable(input) then
input = {input}
end
local mnode = nngraph.Node({module=self})
local dnode
for i = 1, utils.tableMaxN(input) do
dnode = input[i]
if torch.typename(dnode) ~= 'nngraph.Node' then
error(utils.expectingNodeErrorMessage(dnode, 'inputs', i))
end
mnode:add(dnode,true)
end
return mnode
end
local Criterion = torch.getmetatable('nn.Criterion')
function Criterion:__call__(...)
return nn.ModuleFromCriterion(self)(...)
end
Module.__unm__ = function( obj )
return obj()
end
Module.__sub__ = function( prev, next )
return next(prev)
end
do
local Node = torch.getmetatable('nngraph.Node')
Node.__sub__ = function( prev, next )
return next(prev)
end
end
return nngraph
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化