Skip to content

Commit

Permalink
revert unintended changes
Browse files Browse the repository at this point in the history
  • Loading branch information
divyashreepathihalli committed Oct 17, 2024
1 parent 5457829 commit cec3a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras_hub/src/layers/preprocessing/image_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def image_size(self, value):
def call(self, inputs):
x = inputs
if self.image_size is not None:
x = self.resizing(inputs)
x = self.resizing(x)
if self.scale is not None:
x = x * self._expand_non_channel_dims(self.scale, x)
if self.offset is not None:
Expand Down

0 comments on commit cec3a05

Please sign in to comment.