Skip to content
Snippets Groups Projects
Commit b2ddff8c authored by Felix Kleinert's avatar Felix Kleinert
Browse files

structural fix of inception model (#62)

parent 6357486d
No related branches found
No related tags found
2 merge requests!59Develop,!53Felix issue062 apply advanced pooling in inception block feat
......@@ -63,7 +63,7 @@ class InceptionModelBase:
padding='same',
kernel_regularizer=regularizer,
name=block_name)(input_x)
tower = self.act(tower, activation, **act_settings)
# tower = self.act(tower, activation, **act_settings)
else:
tower = layers.Conv2D(reduction_filter,
(1, 1),
......@@ -77,9 +77,9 @@ class InceptionModelBase:
padding='same',
kernel_regularizer=regularizer,
name=block_name)(tower)
if batch_normalisation:
tower = self.batch_normalisation(tower, **bn_settings)
tower = self.act(tower, activation, **act_settings)
if batch_normalisation:
tower = self.batch_normalisation(tower, **bn_settings)
tower = self.act(tower, activation, **act_settings)
return tower
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment