e93507a09c
Lockfile supply-chain audit / lockfile supply-chain audit (push) Has been cancelled
Windows Studio GGUF CI / GPU prebuilt resolves without Visual Studio (push) Has been cancelled
Windows Studio GGUF CI / setup.ps1 unit tests (VS 2026 / CMake guard) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2022) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-2025-vs2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-latest) (push) Has been cancelled
Windows Studio Update CI / Studio Updating Tests (push) Has been cancelled
Wheel CI / Wheel build + content sanity + import smoke (push) Has been cancelled
Lint CI / Source lint (Python + shell + YAML + JSON + safety nets) (push) Has been cancelled
MLX CI on Mac M1 / dispatch (push) Has been cancelled
Security audit / advisory audit (pip + npm + cargo) (push) Has been cancelled
Security audit / pip scan-packages :: extras (push) Has been cancelled
Security audit / pip scan-packages :: studio (push) Has been cancelled
Security audit / pip scan-packages :: hf-stack (push) Has been cancelled
Security audit / npm scan-packages (Studio frontend tarballs) (push) Has been cancelled
Security audit / workflow-trigger lint (pull_request_target / cache-poisoning) (push) Has been cancelled
Security audit / pytest tests/security (push) Has been cancelled
Security audit / npm provenance + new install-script diff (push) Has been cancelled
Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Backend CI / (Python 3.10) (push) Has been cancelled
Backend CI / (Python 3.11) (push) Has been cancelled
Backend CI / (Python 3.12) (push) Has been cancelled
Backend CI / (Python 3.13) (push) Has been cancelled
Backend CI / Repo tests (CPU) (push) Has been cancelled
Frontend CI / Frontend build + bundle sanity (push) Has been cancelled
Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Mac Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Mac Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-14) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15-intel) (push) Has been cancelled
Mac Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26-intel) (push) Has been cancelled
Mac Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Tauri CI / Tauri Linux debug build (no codesign) (push) Has been cancelled
Mac Studio Update CI / Studio Updating Tests (push) Has been cancelled
Studio UI CI / Chat UI Tests (push) Has been cancelled
Windows Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Windows Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Update CI / Studio Updating Tests (push) Has been cancelled
Core / Core (HF=default + TRL=default) (push) Has been cancelled
Core / Core (HF=4.57.6 + TRL<1) (push) Has been cancelled
Core / Core (HF=latest + TRL=latest) (push) Has been cancelled
Core / llama.cpp build + smoke (push) Has been cancelled
Windows Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Windows Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Windows Studio GGUF CI / JSON, images (push) Has been cancelled
Windows Studio GGUF CI / Studio install + inference without Visual Studio (push) Has been cancelled
Studio export capability / capability (macos-latest) (push) Has been cancelled
Studio export capability / capability (ubuntu-latest) (push) Has been cancelled
Studio export capability / capability (windows-latest) (push) Has been cancelled
Cross-platform parity / parity (macos-latest) (push) Has been cancelled
Cross-platform parity / parity (windows-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Studio load-orchestrator CI / test (push) Has been cancelled
123 lines
5.2 KiB
Python
123 lines
5.2 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team.
|
|
"""Regression guard for issue #6881: FastSentenceTransformer must preprocess text
|
|
like a stock SentenceTransformer for decoder embedding models. ST 5.x infers a
|
|
"message" modality for chat-template models (e.g. Qwen/Qwen3-Embedding), so building
|
|
via `Transformer(model_name, ...)` chat-wraps inputs and degrades embeddings;
|
|
`_create_transformer_module` uses `Transformer.load(...)` instead.
|
|
|
|
Layers: test_transformer_load_signature_supports_unsloth_kwargs (fast, runs when ST
|
|
is importable) and test_fast_sentence_transformer_matches_stock_st (end-to-end parity,
|
|
opt-in via UNSLOTH_EMBEDDING_PARITY_MODEL so default CI is unaffected).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import inspect
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
|
def test_transformer_load_signature_supports_unsloth_kwargs():
|
|
"""Forwards-compat tripwire: a Hub-capable Transformer.load must accept the kwargs
|
|
the #6881 fix passes. Legacy ST 3.x/4.x expose load(input_path); the code falls back
|
|
to Transformer(...) there, so mirror that gate and skip."""
|
|
models = pytest.importorskip("sentence_transformers.models")
|
|
load = getattr(models.Transformer, "load", None)
|
|
assert callable(load), (
|
|
"sentence_transformers Transformer.load is missing; the #6881 fix in "
|
|
"unsloth.models.sentence_transformer._create_transformer_module depends on it."
|
|
)
|
|
params = inspect.signature(load).parameters
|
|
accepts_var_kw = any(p.kind is inspect.Parameter.VAR_KEYWORD for p in params.values())
|
|
# Mirror _create_transformer_module's hub_capable gate.
|
|
hub_capable = accepts_var_kw or any(k in params for k in ("token", "cache_folder", "revision"))
|
|
if not hub_capable:
|
|
pytest.skip(
|
|
"legacy Transformer.load(input_path); production path falls back to Transformer(...)"
|
|
)
|
|
unsupported = [
|
|
k
|
|
for k in ("token", "cache_folder", "revision", "trust_remote_code")
|
|
if not (accepts_var_kw or k in params)
|
|
]
|
|
assert not unsupported, (
|
|
f"installed sentence_transformers Transformer.load no longer accepts {unsupported} "
|
|
f"and has no **kwargs; update _create_transformer_module (#6881) before it silently "
|
|
f"falls back to Transformer(...)."
|
|
)
|
|
|
|
|
|
def _probe_texts():
|
|
return [
|
|
"roasted chickpeas in 20 kg bags",
|
|
"The capital of France is Paris.",
|
|
"A fast brown fox jumps over the lazy dog.",
|
|
"recette de tarte aux pommes traditionnelle",
|
|
]
|
|
|
|
|
|
def test_fast_sentence_transformer_matches_stock_st():
|
|
"""End-to-end: FastSentenceTransformer embeddings and tokenization must match a
|
|
stock SentenceTransformer load of the same checkpoint. Opt-in (needs a model) and
|
|
GPU-only (FastSentenceTransformer requires CUDA), so it skips on CPU-only runners."""
|
|
model_id = os.environ.get("UNSLOTH_EMBEDDING_PARITY_MODEL")
|
|
if not model_id:
|
|
pytest.skip(
|
|
"set UNSLOTH_EMBEDDING_PARITY_MODEL to a chat-template embedding model "
|
|
"(HF id or local path) to run the #6881 parity test"
|
|
)
|
|
|
|
torch = pytest.importorskip("torch")
|
|
if not torch.cuda.is_available():
|
|
pytest.skip("FastSentenceTransformer requires CUDA; skipping on CPU-only runner")
|
|
np = pytest.importorskip("numpy")
|
|
pytest.importorskip("sentence_transformers")
|
|
from sentence_transformers import SentenceTransformer
|
|
|
|
device = "cuda"
|
|
# Prefer bf16 when the GPU supports it: fp16 overflows to NaN on bf16-native
|
|
# embedders such as EmbeddingGemma (Gemma3), which would mask real parity.
|
|
dtype = torch.bfloat16 if torch.cuda.is_bf16_supported() else torch.float16
|
|
texts = _probe_texts()
|
|
max_seq_length = 256
|
|
|
|
# Control FIRST, before importing unsloth, so its global import patches never
|
|
# touch the stock reference (mirrors the issue's "restart runtime" repro).
|
|
ctrl = SentenceTransformer(model_id, device = device, model_kwargs = {"torch_dtype": dtype})
|
|
ctrl.max_seq_length = max_seq_length
|
|
ctrl_ids = ctrl.tokenize([texts[0]])["input_ids"][0].tolist()
|
|
ctrl_emb = np.asarray(
|
|
ctrl.encode(texts, normalize_embeddings = True, batch_size = 8), dtype = np.float32
|
|
)
|
|
|
|
import unsloth # noqa: F401
|
|
from unsloth import FastSentenceTransformer
|
|
|
|
fast = FastSentenceTransformer.from_pretrained(
|
|
model_id,
|
|
max_seq_length = max_seq_length,
|
|
dtype = dtype,
|
|
load_in_4bit = False,
|
|
load_in_16bit = True,
|
|
)
|
|
fast_ids = fast.tokenize([texts[0]])["input_ids"][0].tolist()
|
|
fast_emb = np.asarray(
|
|
fast.encode(texts, normalize_embeddings = True, batch_size = 8), dtype = np.float32
|
|
)
|
|
|
|
# Identical tokenization = no chat-template wrapping slipped in (the #6881 defect).
|
|
assert fast_ids == ctrl_ids, (
|
|
f"tokenization diverged (chat-template wrapping regressed?):\n"
|
|
f" stock: {ctrl_ids}\n fast: {fast_ids}"
|
|
)
|
|
|
|
cos = (ctrl_emb * fast_emb).sum(1) / (
|
|
np.linalg.norm(ctrl_emb, axis = 1) * np.linalg.norm(fast_emb, axis = 1)
|
|
)
|
|
assert float(cos.min()) > 0.99, (
|
|
f"embedding parity regressed: min cosine {float(cos.min()):.5f} <= 0.99 "
|
|
f"(per-text {[round(float(c), 5) for c in cos]})"
|
|
)
|