model releaseMicrosoft

Microsoft releases Harrier embedding models with 32K token context, tops multilingual benchmark

TL;DR

Microsoft has released Harrier-OSS-v1, a family of multilingual text embedding models trained with contrastive learning and knowledge distillation. The 0.6B parameter variant achieves a 69.0 score on the Multilingual MTEB v2 benchmark with support for 32,768 token context windows and 45+ languages.

2 min read
0

Microsoft Releases Harrier Multilingual Embedding Models

Microsoft has released Harrier-OSS-v1, a family of decoder-only text embedding models designed for multilingual retrieval, clustering, and semantic similarity tasks. The models use last-token pooling with L2 normalization and support a 32,768 token context window across all variants.

Model Variants and Performance

Microsoft offers three model sizes:

Model Parameters Embedding Dimension MTEB v2 Score
harrier-oss-v1-270m 270M 640 66.5
harrier-oss-v1-0.6b 0.6B 1,024 69.0
harrier-oss-v1-27b 27B 5,376 74.3

All three variants achieve state-of-the-art results on the Multilingual MTEB v2 benchmark as of their release. The models are distributed in BF16 tensor format via Hugging Face.

Training and Architecture

The models use contrastive learning objectives trained on large-scale multilingual datasets covering diverse downstream tasks. The 270M and 0.6B variants additionally incorporate knowledge distillation from larger embedding models to improve performance at smaller scales.

The architecture relies on last-token pooling—the embedding of the final non-padding token serves as the sentence representation—followed by L2 normalization. This pooling strategy is handled automatically in the Sentence Transformers library.

Multilingual Support and Applications

Harrier models support 45+ languages including Arabic, Bulgarian, Czech, German, English, Spanish, French, Hebrew, Hindi, Japanese, Korean, Polish, Portuguese, Russian, Turkish, Ukrainian, Vietnamese, and Chinese, among others.

The models are designed for:

  • Dense retrieval and semantic search
  • Text clustering and classification
  • Semantic similarity computation
  • Bitext mining
  • Reranking tasks

Instruction-Based Fine-Tuning

A key feature: all models require task-specific instructions at query time. Users must provide one-sentence task descriptions (e.g., "Given a web search query, retrieve relevant passages") to achieve optimal performance. Instructions are optional for document embeddings. This allows customization of embeddings for different scenarios through natural language prompts. Pre-configured prompts include web_search_query, sts_query, and bitext_query.

Implementation

The models integrate with both Sentence Transformers and standard Hugging Face Transformers libraries. The 0.6B variant processes inputs up to 32,768 tokens, making it suitable for long-document encoding tasks. Microsoft provides code examples for both libraries, including query-document ranking workflows.

What This Means

Microsoft positions Harrier as an open-source alternative to proprietary embedding APIs, targeting organizations needing multilingual support at production scale. The three-tier sizing strategy allows cost-sensitive deployments (270M) alongside higher-accuracy variants (27B) within a single family. The instruction-based approach trades ease-of-use for task-specific customization—users must engineer prompts rather than relying on general-purpose embeddings. Evaluation on MTEB v2 provides standardized comparison, though practical performance depends on downstream application specifics and instruction quality.

Related Articles

product update

Microsoft Restructures Copilot Into Three Apps, Adds Autopilot Agent and Usage-Based Billing

Microsoft is overhauling Copilot with three distinct sections—Home, Code, and Autopilot—headlined by a proactive business agent built on OpenClaw. The company is also replacing flat-rate pricing with usage-based billing for its agent and automation tools.

product update

Microsoft Merges Coding and Productivity Copilot Into Single App to Counter Anthropic

Microsoft launched an updated Copilot app that merges coding, productivity tasks, and custom agent creation into three tabs — Cowork, Code, and Autopilot. The company is shifting to usage-based pricing as it tries to close the gap with Anthropic's Claude in enterprise AI adoption.

model release

Nvidia Releases Nemotron 3 Diarization, a Free 100M-Parameter Model That Tracks 8 Speakers in Real Time

Nvidia released Nemotron 3 Diarization, a free 100-million-parameter model that identifies who is speaking in real time across up to eight participants. It leads the VoiceArena Diarization Benchmark v1 with a 14.7% error rate, cutting errors by 41% versus its predecessor.

model release

Apple Releases LensVLM-9B, a 9B Vision-Language Model That Selectively Decompresses Text Images

Apple has released LensVLM-9B, a 9-billion-parameter vision-language model fine-tuned from Qwen3.5-9B-Base that processes documents as compressed images, selectively expanding only relevant pages to full resolution. The model supports 5x, 10x, and 15x compression ratios and is available under Apple's Machine Learning Research Model License.

Comments

Loading...