1 Star 0 Fork 1

znb/mc-cnn

forked from hejuncheng1/mc-cnn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SpatialLogSoftMax.lua 770 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jure Zbontar 提交于 2015-09-26 17:22 . Initial commit.
local SpatialLogSoftMax,parent = torch.class('nn.SpatialLogSoftMax', 'nn.Module')
function SpatialLogSoftMax:__init(constant)
parent.__init(self)
self.constant_present = false
self.constant = constant -- a constant added to the exponential sum
if self.constant then
print('Using exp('..self.constant
..') as additional denomimator constant in SpatialLogSoftMax')
self.constant_present = true
end
end
function SpatialLogSoftMax:updateOutput(input)
nn.SpatialLogSoftMax_updateOutput(self, input)
self.output = input
return self.output
end
function SpatialLogSoftMax:updateGradInput(input, gradOutput)
nn.SpatialLogSoftMax_updateGradInput(self, input, gradOutput)
self.gradInput = gradOutput
return self.gradInput
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/znbgithub/mc-cnn.git
[email protected]:znbgithub/mc-cnn.git
znbgithub
mc-cnn
mc-cnn
master

搜索帮助