Model reference · open weights

gemma-embeddings

Available as managed deployment Embeddings Jaume · community Embeddings 1 variants 779 dl/mo

gemma-embeddings is an open-weight embedding model from Jaume. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Released byJaume
TypeEmbedding models
TaskEmbeddings
Parameters (lead)2.5B
Context8k tokens
Runs withsentence-transformers
Released2024-06-29
Popularity779 downloads / month
LicenceUnknown

About

What gemma-embeddings is

This is a sentence-transformers model trained. It maps sentences & paragraphs to a 2048-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Read the full model card

Model Details

Model Description

  • Model Type: Sentence Transformer

  • Maximum Sequence Length: 8192 tokens

  • Output Dimensionality: 2048 tokens

  • Similarity Function: Cosine Similarity

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 8192, 'do_lower_case': False}) with Transformer model: GemmaModel
  (1): Pooling({'word_embedding_dimension': 2048, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

pip install -U sentence-transformers

Then you can load this model and run inference.

from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("Jaume/gemma-2b-embeddings")
# Run inference
sentences = [
    'The weather is lovely today.',
    "It's so sunny outside!",
    'He drove to the stadium.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 2048]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]

Training Details

Framework Versions

  • Python: 3.10.12
  • Sentence Transformers: 3.0.1
  • Transformers: 4.41.2
  • PyTorch: 2.3.0+cu121
  • Accelerate: 0.31.0
  • Datasets: 2.20.0
  • Tokenizers: 0.19.1

Citation

BibTeX

From the published model card. Full card on the HuggingFace links in the sidebar.

Benchmarks

Reported results

As published on the model card — the maker's own numbers, not measured by AxForge.

TaskDatasetMetricScore
ClassificationMTEB AmazonCounterfactualClassification (en)accuracy67.493
ClassificationMTEB AmazonCounterfactualClassification (en)ap30.935
ClassificationMTEB AmazonCounterfactualClassification (en)ap_weighted30.935
ClassificationMTEB AmazonCounterfactualClassification (en)f161.848
ClassificationMTEB AmazonCounterfactualClassification (en)f1_weighted70.733
ClassificationMTEB AmazonCounterfactualClassification (en)main_score67.493
ClassificationMTEB AmazonReviewsClassification (en)accuracy34.896
ClassificationMTEB AmazonReviewsClassification (en)f134.751
ClassificationMTEB AmazonReviewsClassification (en)f1_weighted34.751
ClassificationMTEB AmazonReviewsClassification (en)main_score34.896
ClassificationMTEB Banking77Classification (default)accuracy58.425
ClassificationMTEB Banking77Classification (default)f158.315
ClassificationMTEB Banking77Classification (default)f1_weighted58.315
ClassificationMTEB Banking77Classification (default)main_score58.425
ClassificationMTEB EmotionClassification (default)accuracy29.685
ClassificationMTEB EmotionClassification (default)f126.487
ClassificationMTEB EmotionClassification (default)f1_weighted32.281
ClassificationMTEB EmotionClassification (default)main_score29.685

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys gemma-embeddings for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (gemma-embeddings below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/embeddings \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gemma-embeddings","input":"text to embed"}'

Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms