Skip to content

Commit 75075da

Browse files
authored
Fix bug, missing 'interpolation' in config (#90) (#97)
1 parent 8820afa commit 75075da

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

segmentation_models/common/layers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def call(self, inputs):
7474

7575
def get_config(self):
7676
config = {'factor': self.factor,
77+
'interpolation': self.interpolation,
7778
'data_format': self.data_format}
7879
base_config = super(ResizeImage, self).get_config()
7980
return dict(list(base_config.items()) + list(config.items()))

0 commit comments

Comments
 (0)