bge-large-en-v1.5
by BAAI
BAAI General Embedding, state-of-the-art text retrieval
BAAI/bge-large-en-v1.5mixpeek://text_extractor@v1/baai_bge_large_v1Overview
BGE (BAAI General Embedding) is a family of text embedding models that achieve top performance on the MTEB benchmark. The large-en-v1.5 variant produces 1024-dimensional embeddings optimized for English text retrieval and semantic similarity.
On Mixpeek, BGE powers text-based semantic search over extracted text content, transcriptions, captions, OCR results, and document text.
Architecture
BERT-Large architecture (24 layers, 1024-dim hidden, 16 attention heads) with task-specific training using contrastive learning on curated text pairs. Uses [CLS] token pooling with optional instruction prefix.
Mixpeek SDK Integration
import { Mixpeek } from "mixpeek";
const mx = new Mixpeek({ apiKey: "API_KEY" });
// Managed: create a collection over a bucket; Mixpeek runs this model's extractor
const collection = await mx.collections.create({
namespace_id: "my-namespace",
collection_name: "my-collection",
source: { type: "bucket", bucket_ids: ["bkt_your_bucket"] },
feature_extractor: {
feature_extractor_name: "text_embedding",
version: "v1",
parameters: { model_id: "BAAI/bge-large-en-v1.5" },
},
});Capabilities
- 1024-dimensional dense text embeddings
- Top-ranked on MTEB retrieval benchmarks
- Instruction-aware embedding with task prefixes
- Optimized for asymmetric retrieval (query vs. passage)
Use Cases on Mixpeek
Benchmarks
| Dataset | Metric | Score | Source |
|---|---|---|---|
| MTEB (56 datasets) | Avg Score | 64.23 | MTEB Leaderboard: bge-large-en-v1.5 |
| MS MARCO (Passage) | MRR@10 | 41.2 | Xiao et al., 2024: Table 3 |
| NLI (STS) | Spearman | 86.4 | MTEB Leaderboard |
Performance
Common Pipeline Companions
Explore on Mixpeek
Compare alternatives in this category
Hand-picked tools & platforms compared
Deep-dive technical guide
See how Mixpeek runs models as extractors
Store & search embeddings at scale
Usage-based pricing for pipelines
Compare models, APIs & infrastructure
Specification
Research Paper
C-Pack: Packaged Resources To Advance General Chinese Embedding
arxiv.orgBuild a pipeline with bge-large-en-v1.5
Add this model to a processing pipeline alongside other extractors. Combine with retrieval stages for end-to-end search.
Run it on your own data, free