why the net don't have any active function in googlenet.py in backbone?
Created by: wang-kangkang
for example:
...
conv = self.conv_layer(
input=pool, num_filters=64, filter_size=1, stride=1, act=None)
conv = self.conv_layer(
input=conv, num_filters=192, filter_size=3, stride=1, act=None)
...