embed_utils.py 2.49 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
4
from collections.abc import Sequence

5
import openai
6
7
8
import pytest

from tests.conftest import HfRunner
9
from tests.models.utils import EmbedModelInfo, check_embeddings_close, matryoshka_fy
10
11
12
13
14
15


def run_embedding_correctness_test(
    hf_model: "HfRunner",
    inputs: list[str],
    vllm_outputs: Sequence[list[float]],
16
    dimensions: int | None = None,
17
18
19
20
21
22
23
24
25
26
27
28
29
30
):
    hf_outputs = hf_model.encode(inputs)
    if dimensions:
        hf_outputs = matryoshka_fy(hf_outputs, dimensions)

    check_embeddings_close(
        embeddings_0_lst=hf_outputs,
        embeddings_1_lst=vllm_outputs,
        name_0="hf",
        name_1="vllm",
        tol=1e-2,
    )


31
32
33
34
35
36
37
38
def correctness_test_embed_models(
    hf_runner,
    vllm_runner,
    model_info: EmbedModelInfo,
    example_prompts,
    vllm_extra_kwargs=None,
    hf_model_callback=None,
):
39
    pytest.skip("Debug only, ci prefers to use mteb test.")
40
41
42
43
44
45
46
47
48
49
50
51

    # The example_prompts has ending "\n", for example:
    # "Write a short story about a robot that dreams for the first time.\n"
    # sentence_transformers will strip the input texts, see:
    # https://github.com/UKPLab/sentence-transformers/blob/v3.1.1/sentence_transformers/models/Transformer.py#L159
    # This makes the input_ids different between hf_model and vllm_model.
    # So we need to strip the input texts to avoid test failing.
    example_prompts = [str(s).strip() for s in example_prompts]

    vllm_extra_kwargs = vllm_extra_kwargs or {}
    vllm_extra_kwargs["dtype"] = model_info.dtype

52
53
54
    if model_info.hf_overrides is not None:
        vllm_extra_kwargs["hf_overrides"] = model_info.hf_overrides

55
56
57
    with vllm_runner(
        model_info.name, runner="pooling", max_model_len=None, **vllm_extra_kwargs
    ) as vllm_model:
58
        vllm_outputs = vllm_model.embed(example_prompts)
59
60

    with hf_runner(
61
62
63
        model_info.name,
        dtype=model_info.hf_dtype,
        is_sentence_transformer=True,
64
65
66
67
68
    ) as hf_model:
        if hf_model_callback is not None:
            hf_model_callback(hf_model)

        run_embedding_correctness_test(hf_model, example_prompts, vllm_outputs)
69
70
71
72
73
74
75
76
77
78
79
80
81


async def run_client_embeddings(
    client: openai.AsyncOpenAI,
    model_name: str,
    queries: list[str],
    instruction: str = "",
) -> list[list[float]]:
    outputs = await client.embeddings.create(
        model=model_name,
        input=[instruction + q for q in queries],
    )
    return [data.embedding for data in outputs.data]