Fixed a stupid and embarrassing typo.
authorFrancois Fleuret <francois@fleuret.org>
Mon, 5 Dec 2016 22:50:08 +0000 (23:50 +0100)
committerFrancois Fleuret <francois@fleuret.org>
Mon, 5 Dec 2016 22:50:08 +0000 (23:50 +0100)
profiler.lua
test-profiler.lua

index ad280d2..34e180b 100644 (file)
@@ -37,7 +37,7 @@ require 'sys'
 
 profiler = {}
 
-function profiler.decor(model, functionsToDecorate)
+function profiler.decorate(model, functionsToDecorate)
 
    local functionsToDecorate = functionsToDecorate or
       {
@@ -65,7 +65,7 @@ function profiler.decor(model, functionsToDecorate)
 
    if torch.isTypeOf(model, nn.Container) then
       for _, m in ipairs(model.modules) do
-         profiler.decor(m, functionsToDecorate)
+         profiler.decorate(m, functionsToDecorate)
       end
    end
 
index 7c22576..a78c944 100755 (executable)
@@ -48,9 +48,11 @@ local model = nn.Sequential()
 
 -- Decor it for profiling
 
-profiler.decor(model)
+profiler.decorate(model)
 print()
 
+torch.save('model.t7', model)
+
 -- Create the data and criterion
 
 local input = torch.Tensor(1000, 1000)