Queryn adapter β pplx-embed-1 β me5-large
Translates an embedding produced by pplx-embed-1 into the embedding space of me5-large, so a corpus already embedded with pplx-embed-1 can be served against a me5-large index without re-embedding it. Part of the Queryn embedding-translation engine.
Specs
| Source model | pplx-embed-1 (1024-d) |
| Target model | me5-large (1024-d) |
| Architecture | linear (plain linear projection) |
| Parameters | ~1.0M |
| Best test cosine similarity | 0.9426 (epoch 15) |
| ONNX opset | 17 |
Architecture ablation (best test cosine): linear 0.9426 β saved, deep 0.9396.
Input / output contract
- Input
source_embeddingβ float32, shape[batch, 1024]. Rawpplx-embed-1embeddings; the graph L2-normalizes them itself, so pre-normalization is neither required nor harmful. - Output
target_embeddingβ float32, shape[batch, 1024], unit-normalized, inme5-largespace. - 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-pplx-embed-1_to_me5-large", "model.onnx")
sess = ort.InferenceSession(path, providers=["CPUExecutionProvider"])
src = np.random.rand(4, 1024).astype(np.float32) # your pplx-embed-1 embeddings
tgt = sess.run(["target_embedding"], {"source_embedding": src})[0]
assert tgt.shape == (4, 1024) # unit vectors in me5-large 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
pplx-embed-1 β all targets: learning curves and best scores (this pair included).
Linear vs. deep for every pair (black ring = saved architecture).
Full adapter set: Queryn Embedding Adapters
Provenance
- Source checkpoint:
models/v1/pplx-embed-1_to_me5-large.pt(sha256ad11502b1e8fc84dβ¦) - Converted: 2026-08-30T20:45:23+00:00 Β· torch 2.13.0 Β·
ptConverter.py
License
Released under the MIT license.
- Downloads last month
- 1

