We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dd12da commit 1423512Copy full SHA for 1423512
vllm/inputs/registry.py
@@ -133,7 +133,7 @@ def get_hf_processor(
133
# Transformers 4.53.0 has issue with passing tokenizer to
134
# initialize processor. We disable it for this version.
135
# See: https://github.com/vllm-project/vllm/issues/20224
136
- if Version(TRANSFORMERS_VERSION) != Version("4.53.0"):
+ if Version(TRANSFORMERS_VERSION) < Version("4.53.0"):
137
kwargs["tokenizer"] = self.tokenizer
138
return super().get_hf_processor(
139
typ,
0 commit comments