We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8a402f commit a033df7Copy full SHA for a033df7
official/vision/beta/modeling/layers/nn_blocks.py
@@ -714,7 +714,8 @@ def get_config(self):
714
'use_depthwise': self._use_depthwise,
715
'use_residual': self._use_residual,
716
'norm_momentum': self._norm_momentum,
717
- 'norm_epsilon': self._norm_epsilon
+ 'norm_epsilon': self._norm_epsilon,
718
+ 'output_intermediate_endpoints': self._output_intermediate_endpoints
719
}
720
base_config = super(InvertedBottleneckBlock, self).get_config()
721
return dict(list(base_config.items()) + list(config.items()))
0 commit comments