CoolFace
Modelpublic

QuerynAi/queryn-adapter-ada-002_to_qwen3-emb-8b

sourceHugging Facemitupdated 25d agoView on Hugging Face
0likes18downloads
Model Card

Queryn adapter — ada-002 → qwen3-emb-8b

Translates an embedding produced by ada-002 into the embedding space of qwen3-emb-8b, so a corpus already embedded with ada-002 can be served against a qwen3-emb-8b index without re-embedding it. Part of the Queryn embedding-translation engine.

Specs

Source modelada-002 (1536-d)
Target modelqwen3-emb-8b (4096-d)
Architecturelinear (plain linear projection)
Parameters~6.3M
Best test cosine similarity0.7985 (epoch 15)
ONNX opset17

Architecture ablation (best test cosine): linear 0.7985 ← saved, deep 0.7949.

Input / output contract

  • —Input source_embedding — float32, shape [batch, 1536]. Raw ada-002 embeddings; the graph L2-normalizes them itself, so pre-normalization is neither required nor harmful.
  • —Output target_embedding — float32, shape [batch, 4096], unit-normalized, in qwen3-emb-8b space.
  • —Batch axis is dynamic.

Usage

python
import numpy as np, onnxruntime as ort
from huggingface_hub import hf_hub_download

path = hf_hub_download("QuerynAi/queryn-adapter-ada-002_to_qwen3-emb-8b", "model.onnx")
sess = ort.InferenceSession(path, providers=["CPUExecutionProvider"])

src = np.random.rand(4, 1536).astype(np.float32)   # your ada-002 embeddings
tgt = sess.run(["target_embedding"], {"source_embedding": src})[0]
assert tgt.shape == (4, 4096)                     # unit vectors in qwen3-emb-8b space

Training

Trained on paired embeddings over a unified multi-domain corpus — arXiv abstracts, Australian case law, SQuAD passages, PubMed abstracts, and crypto/markets news (~350k rows spanning science, legal, QA, medical, and finance). Loss: 1 - mean cosine similarity, Adam, ReduceLROnPlateau, best-epoch checkpoint. Both a linear baseline and the MLP are trained for every pair; the higher-scoring one is published (ties go to linear).

Plots

[image]

`ada-002` → all targets: learning curves and best scores (this pair included).

[image]

Linear vs. deep for every pair (black ring = saved architecture).

Full adapter set: Queryn Embedding Adapters

Provenance

  • —Source checkpoint: models/v1/ada-002_to_qwen3-emb-8b.pt (sha256 ef611861d100fd67…)
  • —Converted: 2026-08-30T20:45:22+00:00 · torch 2.13.0 · ptConverter.py

License

Released under the MIT license.