-
Notifications
You must be signed in to change notification settings - Fork 187
/
cnn_ucf101_fusion.m
352 lines (287 loc) · 12.8 KB
/
cnn_ucf101_fusion.m
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
function cnn_ucf101_fusion(varargin)
%CNN_UCF101FUSION Demonstrates training a Two-Stream Fusion ConvNet on UCF101
% This module utilizes a pretrained VGG-VD-16 for rgb and flow
% on UCF101 data for training of the proposed architecture in our paper
%
% Christoph Feichtenhofer, Axel Pinz, Andrew Zisserman
% "Convolutional Two-Stream Network Fusion for Video Action Recognition"
% in Proc. CVPR 2016
if ~isempty(gcp('nocreate')),
delete(gcp)
end
opts = cnn_setup_environment();
opts.train.gpus = [1];
opts.cudnnWorkspaceLimit = [];
opts.dataSet = 'ucf101';
addpath('network_surgery');
opts.dataDir = fullfile(opts.dataPath, opts.dataSet) ;
opts.splitDir = [opts.dataSet '_splits'];
opts.inputdim = [ 224, 224, 20] ;
opts.initMethod = '2sumAB';
opts.dropOutRatio = 0.85;
opts.train.fuseInto = 'spatial'; opts.train.fuseFrom = 'temporal';
opts.train.removeFuseFrom = 0 ;
opts.backpropFuseFrom = 1 ;
opts.nSplit = 1 ;
addConv3D = 1 ;
addPool3D = 1 ;
doSum = 0 ;
opts.train.learningRate = 1*[ 1e-3*ones(1,2) 1e-4*ones(1,1) 1e-5*ones(1,1) 1e-6*ones(1,1)] ;
opts.train.cheapResize = 0 ;
nFrames = 5;
model = ['twostreamfusion-relu5-2x-vd16-split=' num2str(opts.nSplit) '-vgg-' opts.initMethod '-pred-3D=' num2str(addConv3D) ...
'-pool3D=' num2str(addPool3D) ...
'-fuseInto=' opts.train.fuseInto, ...
'-removeFuseFrom=' num2str( opts.train.removeFuseFrom )...
'-backpropFuseFrom=' num2str(opts.backpropFuseFrom), ...
'-nFrames=' num2str(nFrames), ...
'-dr' num2str(opts.dropOutRatio)];
if ~isempty(opts.train.gpus)
opts.train.memoryMapFile = fullfile(tempdir, 'ramdisk', ['matconvnet' num2str(opts.train.gpus(1)) '.bin']) ;
end
opts.train.fusionType = 'conv';
opts.train.fusionLayer = {'relu5_3', 'relu5_3'; };
opts.expDir = fullfile(opts.dataDir, [opts.dataSet '-' model]) ;
opts.modelA = fullfile(opts.modelPath, [opts.dataSet '-img-vgg16-split' num2str(opts.nSplit) '-dr0.85.mat']) ;
opts.modelB = fullfile(opts.modelPath, [opts.dataSet '-TVL1flow-vgg16-split' num2str(opts.nSplit) '-dr0.9.mat']) ;
opts.train.startEpoch = 1;
opts.train.epochStep = 1;
opts.train.epochFactor = 10;
opts.train.numEpochs = 2000 ;
[opts, varargin] = vl_argparse(opts, varargin) ;
opts.imdbPath = fullfile(opts.dataDir, [opts.dataSet '_split' num2str(opts.nSplit) 'imdb.mat']);
opts.train.batchSize = 96 ;
opts.train.numSubBatches = 96 / max(numel(opts.train.gpus),1); % lower this number if you have more GPU memory available
opts.train.saveAllPredScores = 1;
opts.train.denseEval = 1;
opts.train.plotDiagnostics = 0 ;
opts.train.continue = 1 ;
opts.train.prefetch = 1 ;
opts.train.expDir = opts.expDir ;
opts.train.numAugments = 1;
opts.train.frameSample = 'random';
opts.train.nFramesPerVid = 1;
opts.train.augmentation = 'noCtr';
opts = vl_argparse(opts, varargin) ;
% -------------------------------------------------------------------------
% Database initialization
% -------------------------------------------------------------------------
if exist(opts.imdbPath)
imdb = load(opts.imdbPath) ;
imdb.flowDir = opts.flowDir;
else
switch lower(opts.dataSet)
case 'ucf101'
imdb = cnn_ucf101_setup_data('dataPath', opts.dataPath, 'flowDir',opts.flowDir, 'nSplit', opts.nSplit) ;
case 'hmdb51'
imdb = cnn_hmdb51_setup_data('dataPath', opts.dataPath, 'flowDir',opts.flowDir, 'nSplit', opts.nSplit) ;
end
save(opts.imdbPath, '-struct', 'imdb', '-v6') ;
end
% -------------------------------------------------------------------------
% Network initialization
% -------------------------------------------------------------------------
netA = load(opts.modelA) ;
netB = load(opts.modelB) ;
if isfield(netA, 'net'), netA=netA.net;end
if isfield(netB, 'net'), netB=netB.net;end
if ~isfield(netA, 'meta')
netA = vl_simplenn_tidy(netA);
netA = dagnn.DagNN.fromSimpleNN(netA) ;
netA = netA.saveobj() ;
end
if ~isfield(netB, 'meta'),
netB = vl_simplenn_tidy(netB);
netB = dagnn.DagNN.fromSimpleNN(netB) ;
netB = netB.saveobj() ;
end
f = find(strcmp({netA.layers(:).type}, 'dagnn.Loss'));
netA.layers(f(1)-1).name = 'prediction';
f = find(strcmp({netB.layers(:).type}, 'dagnn.Loss'));
netB.layers(f(1)-1).name = 'prediction';
fusionLayerA = []; fusionLayerB = [];
if ~isempty(opts.train.fusionLayer)
for i=1:numel(netA.layers)
if isfield(netA.layers(i),'name') && any(strcmp(netA.layers(i).name,opts.train.fusionLayer(:,1)))
fusionLayerA = [fusionLayerA i];
end
end
for i=1:numel(netB.layers)
if isfield(netB.layers(i),'name') && any(strcmp(netB.layers(i).name,opts.train.fusionLayer(:,2)))
fusionLayerB = [fusionLayerB i];
end
end
end
netA.meta.normalization.averageImage = mean(mean(netA.meta.normalization.averageImage, 1), 2);
netB.meta.normalization.averageImage = mean(mean(netB.meta.normalization.averageImage, 1), 2);
netB.meta.normalization.averageImage = gather(cat(3,netB.meta.normalization.averageImage, netA.meta.normalization.averageImage));
% rename layers, params and vars
for x=1:numel(netA.layers)
if isfield(netA.layers(x), 'name'), netA.layers(x).name = [netA.layers(x).name '_spatial'] ; end
end
for x=1:numel(netB.layers)
if isfield(netB.layers(x), 'name'), netB.layers(x).name = [netB.layers(x).name '_temporal']; end
end
netA = dagnn.DagNN.loadobj(netA);
for i = 1:numel(netA.vars), if~strcmp(netA.vars(i).name,'label'), netA.renameVar(netA.vars(i).name, [netA.vars(i).name '_spatial']); end; end;
for i = 1:numel(netA.params), netA.renameParam(netA.params(i).name, [netA.params(i).name '_spatial']); end;
netB = dagnn.DagNN.loadobj(netB);
for i = 1:numel(netB.vars), if~strcmp(netB.vars(i).name,'label'), netB.renameVar(netB.vars(i).name, [netB.vars(i).name '_temporal']); end;end;
for i = 1:numel(netB.params), netB.renameParam(netB.params(i).name, [netB.params(i).name '_temporal']); end;
% inject conv fusion layer
if addConv3D & any(~cellfun(@isempty,(strfind(opts.train.fusionLayer, 'prediction'))))
if strcmp(opts.train.fuseInto,'temporal')
[ netB ] = insert_conv_layers( netB, fusionLayerB(end), 'initMethod', opts.initMethod );
else
[ netA ] = insert_conv_layers( netA, fusionLayerA(end), 'initMethod', opts.initMethod );
end
end
if ~addConv3D && ~doSum
if strcmp(opts.train.fuseInto,'temporal')
[ netB ] = insert_conv_layers( netB, fusionLayerB, 'initMethod', opts.initMethod );
else
[ netA ] = insert_conv_layers( netA, fusionLayerA, 'initMethod', opts.initMethod );
end
end
if opts.train.removeFuseFrom,
switch opts.train.fuseFrom
case 'spatial'
netA.layers = netA.layers(1:fusionLayerA(end)); netA.rebuild;
case'temporal'
netB.layers = netB.layers(1:fusionLayerB(end)); netB.rebuild;
end
end
% merge nets
netA = netA.saveobj() ;
netB = netB.saveobj() ;
net.layers = [netA.layers netB.layers] ;
net.params = [netA.params netB.params] ;
net.meta = netB.meta;
net = dagnn.DagNN.loadobj(net);
clear netA netB;
net = dagnn.DagNN.setLrWd(net, 'convFiltersLRWD', [1 1], 'convBiasesLRWD', [2 0], ...
'fusionFiltersLRWD', [1 1], 'fusionBiasesLRWD', [2 0], ...
'filtersLRWD' , [1 1], 'biasesLRWD' , [2 0] ) ;
for i = 1:size(opts.train.fusionLayer,1)
if strcmp(opts.train.fuseInto,'spatial')
i_fusion = find(~cellfun('isempty', strfind({net.layers.name}, ...
[opts.train.fusionLayer{i,1} '_' opts.train.fuseInto])));
else
i_fusion = find(~cellfun('isempty', strfind({net.layers.name}, ...
[opts.train.fusionLayer{i,2} '_' opts.train.fuseInto])));
end
name_concat = [opts.train.fusionLayer{i,2} '_concat'];
if doSum
block = dagnn.Sum() ;
net.addLayerAt(i_fusion(end), name_concat, block, ...
[net.layers(strcmp({net.layers.name},[opts.train.fusionLayer{i,1} '_spatial'])).outputs ...
net.layers(strcmp({net.layers.name},[opts.train.fusionLayer{i,2} '_temporal'])).outputs], ...
name_concat) ;
else
block = dagnn.Concat() ;
net.addLayerAt(i_fusion(end), name_concat, block, ...
[net.layers(strcmp({net.layers.name},[opts.train.fusionLayer{i,1} '_spatial'])).outputs ...
net.layers(strcmp({net.layers.name},[opts.train.fusionLayer{i,2} '_temporal'])).outputs], ...
name_concat) ;
end
% set input for fusion layer
net.layers(i_fusion(end)+2).inputs{1} = name_concat;
end
% set inputs
net.addVar('input_flow')
net.vars(net.getVarIndex('input_flow')).fanout = net.vars(net.getVarIndex('input_flow')).fanout + 1 ;
i_conv1= find(~cellfun('isempty', strfind({net.layers.name},'conv1_1_temporal')));
net.layers(i_conv1(end)).inputs = {'input_flow'};
net.renameVar(net.vars(1).name, 'input');
if addConv3D
block = dagnn.Conv3D() ;
params(1).name = 'conv3Df' ;
in = size(net.params(net.getParamIndex('conv5_3f_spatial')).value,4) + ...
size(net.params(net.getParamIndex('conv5_3f_temporal')).value,4) ;
out = 512;
kernel = eye(in/2,out,'single');
kernel = cat(1, .25 * kernel, .75 * kernel);
kernel = permute(kernel, [4 5 3 1 2]);
sigma = 1;
[X,Y,Z] = ndgrid(-1:1, -1:1, -1:1);
G3 = exp( -((X.*X)/(sigma*sigma) + (Y.*Y)/(sigma*sigma) + (Z.*Z)/(sigma*sigma))/2 );
G3 = G3./sum(G3(:));
kernel = bsxfun(@times, kernel, G3);
params(1).value = kernel;
params(2).name = 'conv3Db' ;
params(2).value = zeros(1, out ,'single') ;
pads = size(kernel); pads = ceil(pads(1:3) / 2) - 1;
block.pad = [pads(1),pads(1), pads(2),pads(2), pads(3),pads(3)];
block.stride = [1 1 1];
block.size = size(kernel);
i_relu5 = find(~cellfun('isempty', strfind({net.layers.name},'relu5_3_concat')));
net.addLayerAt(i_relu5, 'conv53D', block, ...
[net.layers(i_relu5).outputs ], ...
'conv3D5', {params.name}) ;
net.params(net.getParamIndex(params(1).name)).value = params(1).value ;
net.params(net.getParamIndex(params(2).name)).value = params(2).value ;
block = dagnn.ReLU() ;
net.addLayerAt(i_relu5+1, 'relu3D5', block, ...
[net.layers(i_relu5+1).outputs ], ...
'relu3D5') ;
net.layers(find(~cellfun('isempty', strfind({net.layers.name},['pool5_' opts.train.fuseInto])))).inputs = {'relu3D5'};
end
if addPool3D
block = dagnn.Pooling3D() ;
block.method = 'max' ;
i_pool5 = find(~cellfun('isempty', strfind({net.layers.name},['pool5_' opts.train.fuseInto])));
block.poolSize = [net.layers(i_pool5).block.poolSize nFrames];
block.pad = [net.layers(i_pool5).block.pad 0,0];
block.stride = [net.layers(i_pool5).block.stride 2];
net.addLayerAt(i_pool5, ['pool3D5_' opts.train.fuseInto], block, ...
[net.layers(i_pool5).inputs], ...
[net.layers(i_pool5).outputs]) ;
net.removeLayer(['pool5_' opts.train.fuseInto], 0) ;
i_pool5 = find(~cellfun('isempty', strfind({net.layers.name},['pool5_' opts.train.fuseFrom ])));
if ~isempty(i_pool5)
block = dagnn.Pooling3D() ;
block.poolSize = [net.layers(i_pool5).block.poolSize nFrames];
block.pad = [net.layers(i_pool5).block.pad 0,0];
block.stride = [net.layers(i_pool5).block.stride 2];
net.addLayerAt(i_pool5, ['pool3D5_' opts.train.fuseFrom], block, ...
[net.layers(i_pool5).inputs], ...
[net.layers(i_pool5).outputs]) ;
net.removeLayer(['pool5_' opts.train.fuseFrom ], 0) ;
end
end
if addConv3D || addPool3D
opts.train.augmentation = 'noCtr';
opts.train.frameSample = 'temporalStrideRandom';
opts.train.nFramesPerVid = nFrames * 1;
opts.train.temporalStride = 5:15;
opts.train.valmode = 'temporalStrideRandom';
opts.train.numValFrames = nFrames * 10 ;
opts.train.saveAllPredScores = 1 ;
opts.train.denseEval = 1;
end
net.meta.normalization.rgbVariance = [];
opts.train.train = find(ismember(imdb.images.set, [1])) ;
opts.train.train = repmat(opts.train.train,1,opts.train.epochFactor);
opts.train.backpropDepth = 'relu5_3_spatial';
for l = 1:numel(net.layers)
if isa(net.layers(l).block, 'dagnn.DropOut')
net.layers(l).block.rate = opts.dropOutRatio;
end
end
net.layers(~cellfun('isempty', strfind({net.layers(:).name}, 'err'))) = [] ;
net.rebuild() ;
opts.train.derOutputs = {} ;
for l=1:numel(net.layers)
if isa(net.layers(l).block, 'dagnn.Loss') && isempty(strfind(net.layers(l).block.loss, 'err'))
if opts.backpropFuseFrom || ~isempty(strfind(net.layers(l).name, opts.train.fuseInto ))
fprintf('setting derivative for layer %s \n', net.layers(l).name);
opts.train.derOutputs = [opts.train.derOutputs, net.layers(l).outputs, {1}] ;
end
net.addLayer(['err1_' net.layers(l).name(end-7:end) ], dagnn.Loss('loss', 'classerror'), ...
net.layers(l).inputs, 'error') ;
end
end
net.print('MaxNumColumns', 5, 'Layers','*','variables','') ;
net.conserveMemory = 1 ;
fn = getBatchWrapper_ucf101_rgbflow(net.meta.normalization, opts.numFetchThreads, opts.train) ;
[info] = cnn_train_dag(net, imdb, fn, opts.train) ;