Skip to content

Commit 0e9a145

Browse files
authored
Update preprocess_input with **kwargs
1 parent 09a915d commit 0e9a145

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

efficientnet/preprocessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def center_crop_and_resize(image, image_size, crop_padding=32, interpolation="bi
5252
return resized_image
5353

5454

55-
def preprocess_input(x):
55+
def preprocess_input(x, **kwargs):
5656
assert x.ndim in (3, 4)
5757
assert x.shape[-1] == 3
5858

0 commit comments

Comments
 (0)