Skip to content

Commit

Permalink
added warning for not using input arguments in get transform method
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasMut committed Jun 18, 2024
1 parent 9c921fd commit 34e04c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thingsvision/core/extraction/extractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def get_default_transformation(
) -> Any:
if self.weights:
warnings.warn(
message="\nInput arguments are ignored because transforms are automatically infered transforms from model weights.\n",
message="\nInput arguments are ignored because transforms are automatically inferred from model weights.\n",
category=UserWarning,
stacklevel=2,
)
Expand Down

0 comments on commit 34e04c2

Please sign in to comment.