forked from Element-Research/dpnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NaN.lua
72 lines (65 loc) · 2.33 KB
/
NaN.lua
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
------------------------------------------------------------------------
--[[ NaN ]]--
-- Asserts that outputs and gradInputs do not contain NaNs.
-- Useful for locating the source of NaN errors.
------------------------------------------------------------------------
local NaN, parent = torch.class("nn.NaN", "nn.Decorator")
local idseq = 0
function NaN.newId()
idseq = idseq + 1
return idseq
end
function NaN:__init(module, id)
parent.__init(self, module)
self.id = id or NaN.newId()
end
function NaN:recursiveIsNaN(tensor)
local isNaN = false
if torch.type(tensor) == 'table' then
for k,v in pairs(tensor) do
isNaN = self:recursiveIsNaN(v)
if isNaN then break end
end
else
local _ = require 'moses'
isNaN = _.isNaN(tensor:sum())
end
return isNaN
end
function NaN:updateOutput(input)
self.output = self.module:updateOutput(input)
if self:recursiveIsNaN(self.output) then
if self:recursiveIsNaN(input) then
error(string.format("NaN found in input of module :\n%s", self:__tostring__()))
elseif self:recursiveIsNaN(self:parameters()) then
error(string.format("NaN found in parameters of module :\n%s", self:__tostring__()))
end
error(string.format("NaN found in output of module :\n%s", self:__tostring__()))
end
return self.output
end
function NaN:updateGradInput(input, gradOutput)
self.gradInput = self.module:updateGradInput(input, gradOutput)
if self:recursiveIsNaN(self.gradInput) then
if self:recursiveIsNaN(gradOutput) then
error(string.format("NaN found in gradOutput of module :\n%s", self:__tostring__()))
end
error(string.format("NaN found in gradInput of module :\n%s", self:__tostring__()))
end
return self.gradInput
end
function NaN:accGradParameters(input, gradOutput, scale)
self.module:accGradParameters(input, gradOutput, scale)
local params, gradParams = self:parameters()
if self:recursiveIsNaN(gradParams) then
error(string.format("NaN found in gradParameters of module :\n%s", self:__tostring__()))
end
end
function NaN:__tostring__()
local selfstring = torch.type(self) .. '(' .. self.id .. ')'
if self.module.__tostring__ then
return selfstring .. ' @ ' .. self.module:__tostring__()
else
return selfstring .. ' @ ' .. torch.type(self.module)
end
end