Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrl committed Dec 13, 2024
1 parent 22d93e7 commit 160641e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions optimum/exporters/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2127,6 +2127,7 @@ def get_model_from_task(
use_auth_token = model_kwargs.pop("use_auth_token", None)
token = model_kwargs.pop("token", None)
trust_remote_code = model_kwargs.pop("trust_remote_code", False)
model_kwargs["torch_dtype"] = torch_dtype

if use_auth_token is not None:
warnings.warn(
Expand All @@ -2144,6 +2145,7 @@ def get_model_from_task(
token=token,
revision=revision,
trust_remote_code=trust_remote_code,
model_kwargs=model_kwargs,
)
else:
try:
Expand Down

0 comments on commit 160641e

Please sign in to comment.