Queryn adapter β€” me5-large β†’ pplx-embed-1

Translates an embedding produced by me5-large into the embedding space of pplx-embed-1, so a corpus already embedded with me5-large can be served against a pplx-embed-1 index without re-embedding it. Part of the Queryn embedding-translation engine.

Specs

Source model me5-large (1024-d)
Target model pplx-embed-1 (1024-d)
Architecture linear (plain linear projection)
Parameters ~1.0M
Best test cosine similarity 0.7101 (epoch 15)
ONNX opset 17

Architecture ablation (best test cosine): linear 0.7101 ← saved, deep 0.7086.

Input / output contract

  • Input source_embedding β€” float32, shape [batch, 1024]. Raw me5-large embeddings; the graph L2-normalizes them itself, so pre-normalization is neither required nor harmful.
  • Output target_embedding β€” float32, shape [batch, 1024], unit-normalized, in pplx-embed-1 space.
  • Batch axis is dynamic.

Usage

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

path = hf_hub_download("QuerynAi/queryn-adapter-me5-large_to_pplx-embed-1", "model.onnx")
sess = ort.InferenceSession(path, providers=["CPUExecutionProvider"])

src = np.random.rand(4, 1024).astype(np.float32)   # your me5-large embeddings
tgt = sess.run(["target_embedding"], {"source_embedding": src})[0]
assert tgt.shape == (4, 1024)                     # unit vectors in pplx-embed-1 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

me5-large

me5-large β†’ all targets: learning curves and best scores (this pair included).

architecture_ablation

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

Full adapter set: Queryn Embedding Adapters

Provenance

  • Source checkpoint: models/v1/me5-large_to_pplx-embed-1.pt (sha256 12056ce58f208be0…)
  • Converted: 2026-08-30T20:45:23+00:00 Β· torch 2.13.0 Β· ptConverter.py

License

Released under the MIT license.

Downloads last month
4
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Collection including QuerynAi/queryn-adapter-me5-large_to_pplx-embed-1