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

SpatialFullConvolution.lua - github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96517ab09bdda68f923f1866240f03d95df229f9 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
local SpatialFullConvolution, parent = torch.class('nn.SpatialFullConvolution','nn.Module')

function SpatialFullConvolution:__init(nInputPlane, nOutputPlane, kW, kH, dW, dH)
   parent.__init(self)

   dW = dW or 1
   dH = dH or 1

   self.nInputPlane = nInputPlane
   self.nOutputPlane = nOutputPlane
   self.kW = kW
   self.kH = kH
   self.dW = dW
   self.dH = dH

   self.weight = torch.Tensor(nInputPlane, nOutputPlane, kH, kW)
   self.gradWeight = torch.Tensor(nInputPlane, nOutputPlane, kH, kW)
   self.bias = torch.Tensor(self.nOutputPlane)
   self.gradBias = torch.Tensor(self.nOutputPlane)

   self:reset()
end

function SpatialFullConvolution:reset(stdv)
   if stdv then
      stdv = stdv * math.sqrt(3)
   else
      local nInputPlane = self.nInputPlane
      local kH = self.kH
      local kW = self.kW
      stdv = 1/math.sqrt(kW*kH*nInputPlane)
   end
   self.weight:apply(function()
                        return torch.uniform(-stdv, stdv)
                     end)
   self.bias:apply(function()
                        return torch.uniform(-stdv, stdv)
                     end)
end

function SpatialFullConvolution:updateOutput(input)
   return input.nn.SpatialFullConvolution_updateOutput(self, input)
end

function SpatialFullConvolution:updateGradInput(input, gradOutput)
   if self.gradInput then
      return input.nn.SpatialFullConvolution_updateGradInput(self, input, gradOutput)
   end
end
function SpatialFullConvolution:accGradParameters(input, gradOutput, scale)
   return input.nn.SpatialFullConvolution_accGradParameters(self, input, gradOutput, scale)
end