-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClassNLLCriterion.lua
More file actions
47 lines (41 loc) · 1.09 KB
/
ClassNLLCriterion.lua
File metadata and controls
47 lines (41 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
local ClassNLLCriterion, parent = torch.class('ClassNLLCriterion', 'Module')
function ClassNLLCriterion:__init()
parent.__init(self)
self.sizeAverage = true
end
function ClassNLLCriterion:updateOutput(input)
local input, target = unpack(input)
if input:dim() == 1 then
self.output = -input[target]
elseif input:dim() == 2 then
local output = 0
for i=1,target:size(1) do
output = output - input[i][target[i]]
end
if self.sizeAverage then
output = output / target:size(1)
end
self.output = output
else
error('matrix or vector expected')
end
return self.output
end
function ClassNLLCriterion:updateGradInput(input)
local input, target = unpack(input)
self.gradInput:resizeAs(input)
self.gradInput:zero()
if input:dim() == 1 then
self.gradInput[target] = -1
else
local z = -1
if self.sizeAverage then
z = z / target:size(1)
end
local gradInput = self.gradInput
for i=1,target:size(1) do
gradInput[i][target[i]] = z
end
end
return self.gradInput
end