代码拉取完成,页面将自动刷新
同步操作将从 hejuncheng1/mc-cnn 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
local SpatialConvolution1_fw, parent = torch.class('nn.SpatialConvolution1_fw', 'nn.Module')
function SpatialConvolution1_fw:__init(inputSize, outputSize)
parent.__init(self)
self:cuda()
self.weight = torch.CudaTensor(outputSize, inputSize)
self.bias = torch.CudaTensor(1, outputSize, 1, 1)
end
function SpatialConvolution1_fw:updateOutput(input)
local num_ex = input:size(1)
local fm_in = input:size(2)
local h = input:size(3)
local w = input:size(4)
local fm_out = self.weight:size(1)
input:resize(num_ex, fm_in, h * w)
self.output:resize(num_ex, fm_out, h * w)
for i = 1,num_ex do
self.output[i]:addmm(0, 1, self.weight, input[i])
end
input:resize(num_ex, fm_in, h, w)
self.output:resize(num_ex, fm_out, h, w)
self.output:add(self.bias:expandAs(self.output))
-- -- Free memory
-- input:storage():resize(0)
return self.output
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。