+--[[
+
+ Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/
+ Written by Francois Fleuret <francois.fleuret@idiap.ch>
+
+ This file is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License version 3 as
+ published by the Free Software Foundation.
+
+ It is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this file. If not, see <http://www.gnu.org/licenses/>.
+
+]]--
+
require 'torch'
require 'nn'
nnm:accGradParameters(node.input, self:computeGradInput(node.gradInputSucc), scale)
end
end
-
-return DAG
#!/usr/bin/env luajit
+--[[
+
+ Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/
+ Written by Francois Fleuret <francois.fleuret@idiap.ch>
+
+ This file is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License version 3 as
+ published by the Free Software Foundation.
+
+ It is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this file. If not, see <http://www.gnu.org/licenses/>.
+
+]]--
+
require 'torch'
require 'nn'
local ana = analyticalGradParam[i]
local num = (loss1 - loss0) / (2 * epsilon)
- local err = torch.abs(num - ana) / torch.abs(num)
+ local err
+
+ if num == ana then
+ err = 0
+ else
+ err = torch.abs(num - ana) / torch.abs(num)
+ end
print(
- err .. ' checkGrad ' .. i
+ 'CHECK '
+ .. err
+ .. ' checkGrad ' .. i
.. ' analytical ' .. ana
.. ' numerical ' .. num
)
f = nn.Linear(3, 3)
g = nn.CAddTable()
-----------------------------------------------------------------------
-
model = nn.DAG()
model:addEdge(a, b)