torch / nngraph

Graph Computation for nn
Other
299 stars 96 forks source link

ittermediate feature maps #149

Closed varghesealex90 closed 7 years ago

varghesealex90 commented 7 years ago

Hi; I made a very simple convolution network using nngraph. I would like to see the intermediate convolution features require 'nngraphs'

a=nn.Identity() () b=nn.SpatialConvolution(3,32,5,5)(a) c= nn.SpatialConvolution(32,4,5,5)(b)

model= nn.Sequential() model:add(nn.gModule({a},{c}))

Now I would like to see the feature map from the first conv.

Please help

Naruto-Sasuke commented 7 years ago

146