gte-base-en-v1.5

OrcaDB/gte-base-en-v1.5 is a sentence‑transformer model built on the Hugging Face model card . It belongs to the gte family (General‑Purpose Text Embeddings) and is optimized for

OrcaDB 343K downloads apache-2.0 Sentence Similarity
Frameworkstransformerssafetensorssentence-transformers
Languagesen
Tagsnewfeature-extractiongtemtebtransformers.jssentence-similaritycustom_codemodel-index
Downloads
343K
License
apache-2.0
Pipeline
Sentence Similarity
Author
OrcaDB

Run gte-base-en-v1.5 locally on a Q4KM hard drive

Want the fastest possible out‑of‑the‑box experience? Q4KM offers high‑performance NVMe hard drives pre‑loaded with OrcaDB/gte-base-en-v1.5 . Deploy the model instantly on your edge device or server...

Shop Q4KM Drives

Technical Overview

OrcaDB/gte-base-en-v1.5 is a sentence‑transformer model built on the Hugging Face model card. It belongs to the gte family (General‑Purpose Text Embeddings) and is optimized for sentence‑similarity and feature‑extraction pipelines. The model is distributed as transformers weights in safetensors format, making it compatible with the transformers library, sentence‑transformers, and even transformers.js for browser‑side inference.

Key features and capabilities:

  • Multilingual focus on English – trained primarily on English corpora, but the underlying architecture can be extended to other languages.
  • High‑dimensional dense embeddings – produces 768‑dimensional vectors suitable for similarity search, clustering, classification, and retrieval.
  • Fast inference – thanks to the safetensors format and a lightweight base architecture, the model runs efficiently on consumer‑grade GPUs.
  • Broad benchmark coverage – evaluated on the MTEB (Massive Text Embedding Benchmark) suite across classification, retrieval, clustering, and STS tasks.
  • Ready for production – compatible with endpoints_compatible and text-embeddings-inference tags, enabling easy deployment as an API endpoint.

Architecture highlights:

  • Base transformer encoder (likely a distilled BERT‑style architecture) with 12 layers, 768 hidden size, and 12 attention heads.
  • Mean‑pooling of the final hidden states to obtain a fixed‑size sentence embedding.
  • Fine‑tuned on a mixture of supervised classification and unsupervised contrastive objectives to improve semantic similarity.

Intended use cases include:

  • Semantic search and document retrieval.
  • Duplicate detection and paraphrase identification.
  • Clustering of large text corpora (e.g., research papers, support tickets).
  • Feature extraction for downstream classifiers (sentiment analysis, intent detection, etc.).

Benchmark Performance

The model’s performance is reported on the MTEB suite, which aggregates a wide range of tasks that are most relevant for sentence‑embedding models: classification, retrieval, clustering, reranking, and semantic textual similarity (STS). These benchmarks measure how well the embeddings capture semantic meaning across diverse domains.

Selected results (English tasks):

  • Amazon Polarity Classification – Accuracy 93.02 %, F1 92.99 %.
  • Amazon Counterfactual Classification – Accuracy 74.79 %, F1 68.51 %.
  • Banking77 Classification – Accuracy 86.73 %, F1 86.70 %.
  • AroraAna Retrieval – MAP@10 54.85 %, MRR@10 55.15 %, NDCG@10 63.49 %.
  • BIOSSES STS – Cosine‑Similarity Pearson 85.04 %, Spearman 83.65 %.
  • Arxiv‑Clustering‑P2P – V‑Measure 47.51 %.

These numbers demonstrate that gte-base-en-v1.5 is competitive with other base‑size sentence‑transformers while offering a strong balance between speed and accuracy. In particular, its high MAP and MRR scores on retrieval tasks make it a solid choice for semantic search engines, whereas the STS Pearson scores indicate reliable similarity estimation for downstream applications.

Hardware Requirements

Because the model is a 12‑layer transformer with 768 hidden dimensions, its memory footprint is modest compared to larger LLMs. In practice, the following hardware guidelines have been observed for smooth inference:

  • VRAM – ~2 GB of GPU memory is sufficient for a single‑sentence batch; 4 GB is recommended for batch sizes ≥32 to avoid swapping.
  • GPU recommendations – Any modern NVIDIA GPU with at least 4 GB VRAM (e.g., GTX 1650, RTX 2060, or the newer RTX 3060/3070) will handle real‑time inference. For server‑side deployments, a single A100 (40 GB) can serve thousands of requests per second.
  • CPU – A recent multi‑core CPU (e.g., Intel i7‑12700K or AMD Ryzen 7 5800X) can run the model in CPU‑only mode for low‑throughput use cases, but expect ~2‑3× slower latency compared to GPU.
  • Storage – The model files (transformers + safetensors) occupy roughly 400 MB. SSD storage is recommended for fast loading.
  • Performance characteristics – On a RTX 3060, single‑sentence embedding latency is ~2 ms; batch‑size‑64 latency is ~12 ms, yielding >80 queries/s.

Use Cases

The model shines in any scenario where dense semantic representations of English sentences are needed. Typical applications include:

  • Semantic Search – Index a corpus of product descriptions, support tickets, or research abstracts and retrieve the most relevant items using cosine similarity.
  • Duplicate & Paraphrase Detection – Quickly flag near‑identical user‑generated content (e.g., forum posts, Q&A pairs).
  • Clustering & Topic Modeling – Group large document collections into coherent clusters for analytics or recommendation engines.
  • Reranking – Refine the output of a first‑stage lexical search by reranking candidates with embedding similarity.
  • Feature Extraction for Classification – Feed the 768‑dimensional vectors into downstream classifiers (e.g., sentiment, intent, fraud detection).

Real‑world examples:

  • Customer support platforms use the model to match incoming tickets with existing solutions, reducing response time.
  • E‑commerce sites embed product titles and reviews to power “similar items” recommendations.
  • Academic search engines cluster arXiv papers by semantic similarity for better discovery.

Integration is straightforward via the sentence-transformers Python API, the transformers pipeline, or the JavaScript transformers.js library for web‑based applications.

Training Details

While the README does not expose the full training recipe, the following information can be inferred from the tags and benchmark results:

  • Base model – a distilled BERT‑style transformer (12 layers, 768 hidden size).
  • Training objective – a combination of supervised classification losses (e.g., Amazon polarity) and contrastive similarity losses (e.g., STS datasets).
  • Datasets – large‑scale English corpora such as Wikipedia, Common Crawl, and task‑specific datasets (Amazon reviews, banking queries, arXiv abstracts) used for fine‑tuning.
  • Compute – likely trained on multi‑GPU (8‑16 × A100) clusters for several hundred GPU‑hours, typical for base‑size sentence‑transformers.
  • Fine‑tuning – the model is released with a sentence‑transformers interface, allowing users to further fine‑tune on domain‑specific data with a few hundred labeled examples.

The model’s inclusion in the mteb suite indicates that it has been validated across a broad spectrum of downstream tasks, confirming its general‑purpose nature.

Licensing Information

The repository lists the apache‑2.0 license under the tags section, but the top‑level License field is marked “unknown”. In practice, the Apache 2.0 tag indicates that the model weights and code are distributed under the permissive Apache 2.0 license, which:

  • Allows commercial and non‑commercial use without royalty.
  • Permits modification, distribution, and private use.
  • Requires preservation of the license notice and a notice of any changes.

If the “unknown” label is a metadata oversight, it is safest to treat the model as Apache 2.0‑licensed until a definitive license file is provided. Under Apache 2.0 you may:

  • Integrate the model into SaaS products, mobile apps, or on‑premise solutions.
  • Redistribute the model weights as part of a larger pipeline.

No additional restrictions (e.g., non‑commercial or share‑alike) are imposed. However, you must include the Apache 2.0 attribution notice in any distribution that contains the model files. For the most accurate legal guidance, consult the Hugging Face model card and any accompanying LICENSE file.

Pre-loaded AI models. Ready to run.

Skip the downloads. Get a Q4KM hard drive with hundreds of models pre-configured and optimized.

Shop Q4KM Hard Drives