Welcome to mirror list, hosted at ThFree Co, Russian Federation.

L1Cost.lua - github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b58e0ec95b18ba48bdfc56c89a12858279a0e2a (plain)
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
local THNN = require 'nn.THNN'
local L1Cost, parent = torch.class('nn.L1Cost','nn.Criterion')

function L1Cost:__init()
   parent.__init(self)
end

function L1Cost:updateOutput(input)
   self.output_tensor = self.output_tensor or input.new(1)
   input.THNN.L1Cost_updateOutput(
      input:cdata(),
      self.output_tensor:cdata()
   )
   self.output = self.output_tensor[1]
   return self.output
end

function L1Cost:updateGradInput(input)
   input.THNN.L1Cost_updateGradInput(
      input:cdata(),
      THNN.NULL,
      self.gradInput:cdata()
   )
   return self.gradInput
end

function L1Cost:clearState()
   if self.output_tensor then self.output_tensor:set() end
   return parent.clearState(self)
end