Update.
[dagnn.git] / test-dagnn.lua
index cac5a94..3801956 100755 (executable)
@@ -1,10 +1,31 @@
 #!/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'
-
 require 'dagnn'
 
+torch.setdefaulttensortype('torch.DoubleTensor')
+torch.manualSeed(1)
+
 function checkGrad(model, criterion, input, target)
    local params, gradParams = model:getParameters()
 
@@ -17,6 +38,8 @@ function checkGrad(model, criterion, input, target)
    model:backward(input, gradOutput)
    local analyticalGradParam = gradParams:clone()
 
+   local err = 0
+
    for i = 1, params:size(1) do
       local x = params[i]
 
@@ -32,15 +55,13 @@ function checkGrad(model, criterion, input, target)
 
       local ana = analyticalGradParam[i]
       local num = (loss1 - loss0) / (2 * epsilon)
-      local err = torch.abs(num - ana) / torch.abs(num)
 
-      print(
-         err .. ' checkGrad ' .. i
-            .. ' analytical ' .. ana
-            .. ' numerical ' .. num
-      )
+      if num ~= ana then
+         err = math.max(err, torch.abs(num - ana) / torch.abs(num))
+      end
    end
 
+   return err
 end
 
 function printTensorTable(t)
@@ -54,64 +75,37 @@ function printTensorTable(t)
    end
 end
 
--- torch.setnumthreads(params.nbThreads)
-torch.setdefaulttensortype('torch.DoubleTensor')
-torch.manualSeed(2)
+--               +-- Linear(10, 10) --> ReLU --> d --+
+--              /                              /      \
+--             /                              /        \
+--  --> a --> b -----------> c --------------+          e -->
+--                            \                        /
+--                             \                      /
+--                              +----- Mul(-1) ------+
 
---                     +--> c ----> e --+
---                    /            /     \
---                   /            /       \
---  input --> a --> b ---> d ----+         g --> output
---                          \             /
---                           \           /
---                            +--> f ---+
+model = nn.DAG()
 
-a = nn.Linear(10, 10)
+a = nn.Linear(50, 10)
 b = nn.ReLU()
-c = nn.Linear(10, 3)
-d = nn.Linear(10, 3)
-e = nn.CMulTable()
-f = nn.Linear(3, 3)
-g = nn.CAddTable()
-
-----------------------------------------------------------------------
-
-model = nn.DAG()
+c = nn.Linear(10, 15)
+d = nn.CMulTable()
+e = nn.CAddTable()
 
-model:addEdge(a, b)
-model:addEdge(b, c)
-model:addEdge(b, d)
-model:addEdge(c, e)
-model:addEdge(d, e)
-model:addEdge(d, f)
-model:addEdge(e, g)
-model:addEdge(f, g)
+model:connect(a, b, c)
+model:connect(b, nn.Linear(10, 15), nn.ReLU(), d)
+model:connect(d, e)
+model:connect(c, d)
+model:connect(c, nn.Mul(-1), e)
 
 model:setInput(a)
-model:setOutput(g)
-
-input = torch.Tensor(3, 10):uniform()
-
-print('******************************************************************')
-print('** updateOutput **************************************************')
-print('******************************************************************')
+model:setOutput(e)
 
-output = model:updateOutput(input):clone()
-
-printTensorTable(output)
-
-print('******************************************************************')
-print('** updateGradInput ***********************************************')
-print('******************************************************************')
-
-gradInput = model:updateGradInput(input, output)
-
-printTensorTable(gradInput)
-
-print('******************************************************************')
-print('** checkGrad *****************************************************')
-print('******************************************************************')
+local input = torch.Tensor(30, 50):uniform()
+local output = model:updateOutput(input):clone()
 
 output:uniform()
 
-checkGrad(model, nn.MSECriterion(), input, output)
+print('Error = ' .. checkGrad(model, nn.MSECriterion(), input, output))
+
+print('Writing /tmp/graph.dot')
+model:saveDot('/tmp/graph.dot')