An open-weight multimodal embedding model that adds audio to a frozen vision-language base without touching a single base weight.
Fusion Embedding 1 is an open-weight multimodal embedding model that maps five modalities — text, image, video, audio, and PDF — into a single shared vector space. It is built by Eximius-Labs for retrieval, RAG, clustering, and cross-modal search, and is designed to be fully self-hostable.
Instead of training a multimodal embedder from scratch, Fusion Embedding 1 takes Qwen3-VL-Embedding, an open state-of-the-art text/image/video embedding model, and freezes it byte-for-byte. It then adds an audio pathway using a frozen Qwen2.5-Omni audio tower feeding a small trained connector called the FusionResampler (about 16M parameters, under 1% of the base). Audio is aligned to text contrastively, and because text, image, and video already share the base model's vector space, audio-to-image and audio-to-video alignment emerge through the text bridge.
base_drift == 0 on every training run).Fusion Embedding 1 is aimed at developers and researchers building retrieval-augmented generation (RAG) systems, cross-modal search engines, and clustering pipelines who need to search and compare text, images, video, audio, and PDFs within one unified vector space. Because it is open-weight and self-hostable, it also suits teams that want to avoid API dependencies and rate limits for embedding workloads.
A research preview checkpoint, fusion-embedding-1-2b-preview, is available on Hugging Face with connector weights, a model card with benchmarks, and a packaged inference API. The source code and training pipeline are published on GitHub under the Apache-2.0 license.