forked from fmassa/optimize-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphgen.lua
263 lines (236 loc) · 8.08 KB
/
graphgen.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
require 'graph'
local utils = require 'optnet.utils'
-- taken from http://www.graphviz.org/doc/info/colors.html
local colorNames = {
"aliceblue","antiquewhite","antiquewhite1","antiquewhite2","antiquewhite3",
"antiquewhite4","aquamarine","aquamarine1","aquamarine2","aquamarine3",
"aquamarine4","azure","azure1","azure2","azure3",
"azure4","beige","bisque","bisque1","bisque2",
"bisque3","bisque4","black","blanchedalmond","blue",
"blue1","blue2","blue3","blue4","blueviolet",
"brown","brown1","brown2","brown3","brown4",
"burlywood","burlywood1","burlywood2","burlywood3","burlywood4",
"cadetblue","cadetblue1","cadetblue2","cadetblue3","cadetblue4",
"chartreuse","chartreuse1","chartreuse2","chartreuse3","chartreuse4",
"chocolate","chocolate1","chocolate2","chocolate3","chocolate4",
"coral","coral1","coral2","coral3","coral4",
"cornflowerblue","cornsilk","cornsilk1","cornsilk2","cornsilk3",
"cornsilk4","crimson","cyan","cyan1","cyan2",
"cyan3","cyan4","darkgoldenrod","darkgoldenrod1","darkgoldenrod2",
"darkgoldenrod3","darkgoldenrod4","darkgreen","darkkhaki","darkolivegreen",
"darkolivegreen1","darkolivegreen2","darkolivegreen3","darkolivegreen4","darkorange",
"darkorange1","darkorange2","darkorange3","darkorange4","darkorchid",
"darkorchid1","darkorchid2","darkorchid3","darkorchid4","darksalmon",
"darkseagreen","darkseagreen1","darkseagreen2","darkseagreen3","darkseagreen4",
"darkslateblue","darkslategray","darkslategray1","darkslategray2","darkslategray3",
"darkslategray4","darkslategrey","darkturquoise","darkviolet","deeppink",
"deeppink1","deeppink2","deeppink3","deeppink4","deepskyblue",
"deepskyblue1","deepskyblue2","deepskyblue3","deepskyblue4","dimgray",
"dimgrey","dodgerblue","dodgerblue1","dodgerblue2","dodgerblue3",
"dodgerblue4","firebrick","firebrick1","firebrick2","firebrick3",
"firebrick4","floralwhite","forestgreen","gainsboro","ghostwhite",
"gold","gold1","gold2","gold3","gold4",
"goldenrod","goldenrod1","goldenrod2","goldenrod3","goldenrod4"
}
-- some modules exist only for constructing
-- the flow of information, and should not
-- have their place in the computation graph
-- as separate entities
local function isSingleOperationModule(m)
if m.modules then
return false
end
local constructorModules = {
'nn.Identity',
'nn.SelectTable',
'nn.NarrowTable',
'nn.FlattenTable'
}
local mType = torch.typename(m)
for _, v in ipairs(constructorModules) do
if mType == v then
return false
end
end
return true
end
local function isOperativeContainer(m)
local mType = torch.typename(m)
local opContainers = {
'nn.Concat',
'nn.Parallel',
'nn.DepthConcat'
}
for _, v in ipairs(opContainers) do
if mType == v then
return true
end
end
-- those modules heritate from an
-- operative container like nn.Concat
local fakeContainers = {
'inn.SpatialPyramidPooling',
}
for _, v in ipairs(fakeContainers) do
if mType == v then
return true
end
end
return false
end
-- generates a graph from a nn network
-- Arguments:
-- net: nn network
-- input: input to the network
-- opts: table with options for the graph generation. Options are
-- nodeData: function that takes the string with storage id plus
-- the tensor output from the module and outputs a
-- string which will be displayed in the graph
-- displayProps: display options from graphviz, like color, fontsize,
-- style, etc
-- addOutputNode: insert a dummy output node in the generated graph
-- returns a graph representing the network
local function generateGraph(net, input, opts)
opts = opts or {}
local storageHash = {}
local nodes = {}
local g = graph.Graph()
-- basic function for creating an annotated nn.Node to suit our purposes
-- gives the same color for the same storage.
-- note that two colors being the same does not imply the same storage
-- as we have a limited number of colors
local function createNode(name, tensor)
local data = torch.pointer(tensor:storage())
local storageId
if not storageHash[data] then
storageHash[data] = torch.random(1,#colorNames)
table.insert(storageHash, data)
end
for k, v in ipairs(storageHash) do
if v == data then
storageId = k
end
end
local nodeData = 'Storage id: '..storageId
if opts.nodeData then
nodeData = opts.nodeData(nodeData, tensor)
end
local node = graph.Node(nodeData)
function node:graphNodeName()
return name
end
function node:graphNodeAttributes()
local prop = {
color=colorNames[storageHash[data]],
style = 'filled',
shape = 'box',
fontsize = 10,
}
if opts.displayProps then
for k, v in pairs(opts.displayProps) do
prop[k] = v
end
end
return prop
end
return node
end
-- generate input/output nodes
local function createBoundaryNode(input, name)
if torch.isTensor(input) then
local ptr = torch.pointer(input)
nodes[ptr] = createNode(name,input)
else
for k,v in ipairs(input) do
createBoundaryNode(v, name..' '..k)
end
end
end
-- create edge "from" -> "to", creating "to" on the way with "name"
-- the edges can be seen as linking modules, but in fact it links the output
-- tensor of each module
local function addEdge(from, to, name)
if torch.isTensor(to) and torch.isTensor(from) then
local fromPtr = torch.pointer(from)
local toPtr = torch.pointer(to)
nodes[toPtr] = nodes[toPtr] or createNode(name,to)
assert(nodes[fromPtr], 'Parent node inexistant for module '.. name)
-- insert edge
g:add(graph.Edge(nodes[fromPtr],nodes[toPtr]))
elseif torch.isTensor(from) then
for k,v in ipairs(to) do
addEdge(from, v, name)
end
else
for k,v in ipairs(from) do
addEdge(v, to, name)
end
end
end
-- go over the network keeping track of the input/output for each module
-- we overwrite the updateOutput for that.
local function apply_func(m)
local basefunc = m.updateOutput
m.updateOutput = function(self, input)
if isSingleOperationModule(m) then
local name = tostring(m)
if m.inplace then -- handle it differently ?
addEdge(input,self.output,name)
else
addEdge(input,self.output,name)
end
elseif isOperativeContainer(m) then
-- those containers effectively do some computation, so they have their
-- place in the graph
for i,branch in ipairs(m.modules) do
local last_module
if branch.modules then
last_module = branch:get(branch:size())
else
last_module = branch
end
local out = last_module.output
local ptr = torch.pointer(out)
local name = torch.typename(last_module)
nodes[ptr] = nodes[ptr] or createNode(name,out)
addEdge(out, self.output, torch.typename(m))
end
end
return basefunc(self, input)
end
end
createBoundaryNode(input, 'Input')
if torch.typename(net) == 'nn.DataParallelTable' then
net = net.modules[1]
end
-- fill the states from each tensor
net:forward(input)
-- overwriting the standard functions to generate our graph
net:apply(apply_func)
-- generate the graph
net:forward(input)
if opts.addOutputNode then
-- add dummy output node and link the last module to it
local output = utils.recursiveClone(net.output)
createBoundaryNode(output, 'Output')
local function addOutputEdge(lastModule, output)
if torch.isTensor(lastModule) then
local fromPtr = torch.pointer(lastModule)
local toPtr = torch.pointer(output)
-- insert edge
g:add(graph.Edge(nodes[fromPtr],nodes[toPtr]))
else
for k,v in ipairs(lastModule) do
addOutputEdge(v, output[k])
end
end
end
addOutputEdge(net.output, output)
end
-- clean up the modified function
net:apply(function(x)
x.updateOutput = nil
end)
return g
end
return generateGraph