Unverified Commit 43d384ba authored by wang.yuqi's avatar wang.yuqi Committed by GitHub
Browse files

[CI] Increase the MTEB_EMBED_TOL threshold to 5e-4. (#31797)


Signed-off-by: default avatarwang.yuqi <yuqi.wang@daocloud.io>
parent db318326
......@@ -19,9 +19,9 @@ from tests.models.utils import (
# - Model implementation and minor changes in tensor dtype
# results in differences less than 1e-4
# - Different model results in differences more than 1e-3
# 1e-4 is a good tolerance threshold
# 5e-4 is a good tolerance threshold
MTEB_EMBED_TASKS = ["STS12"]
MTEB_EMBED_TOL = 1e-4
MTEB_EMBED_TOL = 5e-4
_empty_model_meta = ModelMeta(
......
......@@ -65,7 +65,6 @@ MODELS = [
"BAAI/bge-code-v1",
architecture="Qwen2Model",
mteb_score=0.75724465,
dtype="float32",
pooling_type="LAST",
attn_type="decoder",
is_prefix_caching_supported=True,
......
......@@ -89,7 +89,6 @@ MODELS = [
"Qwen/Qwen3-Embedding-0.6B",
mteb_score=0.771163695,
architecture="Qwen3ForCausalLM",
dtype="float32",
pooling_type="LAST",
attn_type="decoder",
is_prefix_caching_supported=True,
......@@ -99,7 +98,6 @@ MODELS = [
EmbedModelInfo(
"Qwen/Qwen3-Embedding-4B",
architecture="Qwen3ForCausalLM",
dtype="float32",
enable_test=False,
),
]
......
......@@ -28,7 +28,6 @@ EMBEDDING_MODELS = [
attn_type="encoder_only",
is_prefix_caching_supported=False,
is_chunked_prefill_supported=False,
dtype="float32",
)
]
......
......@@ -29,7 +29,6 @@ ST_PROJECTOR_MODELS = [
is_prefix_caching_supported=False,
is_chunked_prefill_supported=False,
enable_test=True,
dtype="float32",
),
]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment