This repository has been archived by the owner on Mar 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
LinearNB.lua
99 lines (86 loc) · 2.91 KB
/
LinearNB.lua
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
-- Copyright (c) 2015-present, Facebook, Inc.
-- All rights reserved.
--
-- This source code is licensed under the BSD-style license found in the
-- LICENSE file in the root directory of this source tree. An additional grant
-- of patent rights can be found in the PATENTS file in the same directory.
local LinearNB, parent = torch.class('nn.LinearNB', 'nn.Module')
function LinearNB:__init(inputSize, outputSize)
parent.__init(self)
self.outputSize = outputSize
self.inputSize = inputSize
self.weight = torch.Tensor(outputSize, inputSize)
self.gradWeight = torch.Tensor(outputSize, inputSize)
self:reset()
end
function LinearNB:reset(stdv)
if stdv then
stdv = stdv * math.sqrt(3)
else
stdv = 1./math.sqrt(self.weight:size(2))
end
if nn.oldSeed then
for i=1,self.weight:size(1) do
self.weight:select(1, i):apply(function()
return torch.uniform(-stdv, stdv)
end)
end
else
self.weight:uniform(-stdv, stdv)
end
end
function LinearNB:updateOutput(input)
if input:dim() == 1 then
self.output:resize(self.outputSize)
self.output:zero()
self.output:addmv(1, self.weight, input)
elseif input:dim() == 2 then
local nframe = input:size(1)
local nunit = self.outputSize
self.output:resize(nframe, nunit):zero()
if not self.addBuffer or self.addBuffer:size(1) ~= nframe then
self.addBuffer = input.new(nframe):fill(1)
end
if nunit == 1 then
-- Special case to fix output size of 1 bug:
self.output:select(2,1):addmv(1, input, self.weight:select(1,1))
else
self.output:addmm(1, input, self.weight:t())
end
else
error('input must be vector or matrix')
end
return self.output
end
function LinearNB:updateGradInput(input, gradOutput)
if self.gradInput then
local nElement = self.gradInput:nElement()
self.gradInput:resizeAs(input)
if self.gradInput:nElement() ~= nElement then
self.gradInput:zero()
end
if input:dim() == 1 then
self.gradInput:addmv(0, 1, self.weight:t(), gradOutput)
elseif input:dim() == 2 then
self.gradInput:addmm(0, 1, gradOutput, self.weight)
end
return self.gradInput
end
end
function LinearNB:accGradParameters(input, gradOutput, scale)
scale = scale or 1
if input:dim() == 1 then
self.gradWeight:addr(scale, gradOutput, input)
elseif input:dim() == 2 then
local nunit = self.outputSize
if nunit == 1 then
-- Special case to fix output size of 1 bug:
self.gradWeight:select(1,1):addmv(scale,
input:t(), gradOutput:select(2,1))
else
self.gradWeight:addmm(scale, gradOutput:t(), input)
end
end
end
-- we do not need to accumulate parameters when sharing
LinearNB.sharedAccUpdateGradParameters = LinearNB.accUpdateGradParameters