[Bugfix] Fix normalize still being passed to PoolerConfig (#33794)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
This commit is contained in:
Cyrus Leung
2026-02-04 23:56:02 +08:00
committed by GitHub
parent 711edaf0d0
commit 80f921ba4b
2 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ def test_models(
vllm_extra_kwargs = {}
if model == "ssmits/Qwen2-7B-Instruct-embed-base":
vllm_extra_kwargs["pooler_config"] = PoolerConfig(
seq_pooling_type="MEAN", normalize=False
seq_pooling_type="MEAN", use_activation=False
)
max_model_len: int | None = 512