Skip to content

Commit 3335a6f

Browse files
committed
Fix jittered resize
1 parent 27ac3e1 commit 3335a6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keras_cv/layers/preprocessing/jittered_resize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def call(self, inputs, training=True):
131131
else:
132132
inputs = self._ensure_inputs_are_compute_dtype(inputs)
133133
inputs, meta_data = self._format_inputs(inputs)
134-
output = = self.inference_resizing(inputs)
134+
output = self.inference_resizing(inputs)
135135
return self._format_output(output, meta_data)
136136

137137
def get_random_transformation(self, image=None, **kwargs):

0 commit comments

Comments
 (0)