NeoMME logo

NeoMME-Retriever (800M): Single-Tower Multimodal-Native Multilingual Foundation Encoder 🔎

NeoMME-Retriever (800M) variants:

  • Default (transformers): Returns dense and multi-vector embeddings together with a single forward pass. Recommended for most use cases and inference.
  • ST dense: Supports independent dense fine-tuning with Sentence Transformers.
  • ST late-interaction [current]: Supports independent multi-vector fine-tuning with Sentence Transformers.

Hugging Face Hugging Face arXiv

NeoMME-800M-Retriever-ST-late is a model for multimodal document retrieval. Fine-tuned from NeoMME-800M, it encodes text queries and documents (text or page screenshots) using one shared bidirectional Transformer encoder.

This model can be used with Sentence Transformers, but can only generate multi-vector embeddings.

SpecificationValue
Parameters800M
Vocabulary131,072 tokens
Context length16,384 tokens
Hidden size1,792
Image patches32 × 32 pixels, up to 2,048 pixels on the longest side (default)
Multi-vector embeddings128 dimensions per text token or image patch

Multi-vector embeddings are L2-normalized and use MeanMaxSim scoring.

Performance

All scores use the metric shown at the full trained dimensions. Higher is better. ViDoRe v3, v2, and v1 measure visual document retrieval, while BEIR-15 measures text retrieval.

BenchmarkMetricNeoMME-260MNeoMME-800M
Late interactionDenseLate interaction [current]Dense
ViDoRe v3nDCG@100.52260.39070.55600.4391
ViDoRe v2nDCG@50.52180.40750.55910.4475
ViDoRe v1nDCG@50.85980.75520.87440.7993
BEIR-15nDCG@100.48810.30550.51260.3686

Usage

pip install -U "sentence-transformers[image]"
from sentence_transformers import MultiVectorEncoder


model = MultiVectorEncoder("Hcompany/NeoMME-800M-Retriever-ST-late")

queries = [
    "Quelle partie de la production pétrolière du Kazakhstan provient de champs en mer ?",
    "Which hour of the day had the highest overall electricity generation in 2019?",
]
image_documents = [
    "https://github.com/tonywu71/colpali-cookbooks/blob/main/examples/data/shift_kazakhstan.jpg?raw=true",
    "https://github.com/tonywu71/colpali-cookbooks/blob/main/examples/data/energy_electricity_generation.jpg?raw=true",
]

query_embeddings = model.encode_query(queries)
document_embeddings = model.encode_document(image_documents)
late_scores = model.similarity(query_embeddings, document_embeddings)

# Expected: late_scores[0, 0] > late_scores[0, 1] and late_scores[1, 1] > late_scores[1, 0].
print(late_scores)

The score tensor has shape (num_queries, num_documents) and late_scores[i, j] is the score between query i and document j. A larger value indicates a closer match.

Text documents use the same API:

text_documents = [
    "Kazakhstan produces oil from both onshore and offshore fields.",
    "Electricity generation varies throughout the day.",
]
text_document_embeddings = model.encode_document(text_documents)

The Transformers repository returns dense and multi-vector embeddings together. Use it directly when both representations are needed from one backbone pass.

Training

NeoMME-800M-Retriever was fine-tuned from NeoMME-800M on text retrieval and document-page images. Training uses a joint late-interaction and Matryoshka dense contrastive objective.

The NeoMME technical report describes the full fine-tuning recipe (will be released soon).

Limitations

With Sentence Transformers, only one of the two retrieval heads can be used at a time.

License

Model weights are released under the Apache 2.0 license.

Citation

@misc{lac2026neommesingletowermultimodalnativemultilingual,
      title={NeoMME: A Single-Tower Multimodal-Native Multilingual Foundation Encoder for Efficient Fine-Tuning and Inference},
      author={Aurélien Lac and Tony Wu},
      year={2026},
      eprint={2609.01657},
      archivePrefix={arXiv},
      primaryClass={cs.IR},
      url={https://arxiv.org/abs/2609.01657},
}
Downloads last month
5
Safetensors
Model size
0.8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Hcompany/NeoMME-800M-Retriever-ST-late

Finetuned
(2)
this model

Collection including Hcompany/NeoMME-800M-Retriever-ST-late

Paper for Hcompany/NeoMME-800M-Retriever-ST-late

Article mentioning Hcompany/NeoMME-800M-Retriever-ST-late