Skip to content

Commit

Permalink
Ignore a mypy complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
vtaskow committed Jul 28, 2023
1 parent 548edce commit 55635b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtimes/huggingface/mlserver_huggingface/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def load_pipeline_from_settings(
# If max_batch_size > 0 we need to ensure tokens are padded
if settings.max_batch_size:
model = hf_pipeline.model
eos_token_id = model.config.eos_token_id
eos_token_id = model.config.eos_token_id # type: ignore
hf_pipeline.tokenizer.pad_token_id = [str(eos_token_id)] # type: ignore

return hf_pipeline
Expand Down

0 comments on commit 55635b3

Please sign in to comment.