Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsRogge committed Dec 13, 2023
1 parent e83bb09 commit f269d16
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/transformers/models/dpt/image_processing_dpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ def resize(
if "height" not in size or "width" not in size:
raise ValueError(f"The size dictionary must contain the keys 'height' and 'width'. Got {size.keys()}")

print("Keep aspect ratio:", keep_aspect_ratio)
output_size = get_resize_output_image_size(
image,
output_size=(size["height"], size["width"]),
Expand Down

0 comments on commit f269d16

Please sign in to comment.