File size: 17,100 Bytes
9e8002e 367910f 9e8002e 367910f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 |
---
license: gemma
pipeline_tag: sentence-similarity
library_name: sentence-transformers
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- text-embeddings-inference
extra_gated_heading: Access EmbeddingGemma on Hugging Face
extra_gated_prompt: To access EmbeddingGemma on Hugging Face, you’re required to review and
agree to Google’s usage license. To do this, please ensure you’re logged in to Hugging
Face and click below. Requests are processed immediately.
extra_gated_button_content: Acknowledge license
---
# EmbeddingGemma model card
**Model Page**: [EmbeddingGemma](https://ai.google.dev/gemma/docs/embeddinggemma)
**Resources and Technical Documentation**:
* [Responsible Generative AI Toolkit](https://ai.google.dev/responsible)
* [EmbeddingGemma on Kaggle](https://www.kaggle.com/models/google/embeddinggemma/)
* [EmbeddingGemma on Vertex Model Garden](https://console.cloud.google.com/vertex-ai/publishers/google/model-garden/embeddinggemma)
**Terms of Use**: [Terms](https://ai.google.dev/gemma/terms)
**Authors**: Google DeepMind
## Model Information
### Description
EmbeddingGemma is a 300M parameter, state-of-the-art for its size, open embedding model from Google, built from Gemma 3 (with T5Gemma initialization) and the same research and technology used to create Gemini models. EmbeddingGemma produces vector representations of text, making it well-suited for search and retrieval tasks, including classification, clustering, and semantic similarity search. This model was trained with data in 100+ spoken languages.
The small size and on-device focus makes it possible to deploy in environments with limited resources such as mobile phones, laptops, or desktops, democratizing access to state of the art AI models and helping foster innovation for everyone.
### Inputs and outputs
- **Input:**
- Text string, such as a question, a prompt, or a document to be embedded
- Maximum input context length of 2048 tokens
- **Output:**
- Numerical vector representations of input text data
- Output embedding dimension size of 768, with smaller options available (512, 256, or 128) via Matryoshka Representation Learning (MRL). MRL allows users to truncate the output embedding of size 768 to their desired size and then re-normalize for efficient and accurate representation.
### Usage
These model weights are designed to be used with [Sentence Transformers](https://www.SBERT.net), using the [Gemma 3](https://huggingface.co/docs/transformers/main/en/model_doc/gemma3) implementation from [Hugging Face Transformers](https://huggingface.co/docs/transformers/en/index) as the backbone.
First install the Sentence Transformers library:
```bash
pip install -U sentence-transformers
```
Then you can load this model and run inference.
```python
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("google/embeddinggemma-300m")
# Run inference with queries and documents
query = "Which planet is known as the Red Planet?"
documents = [
"Venus is often called Earth's twin because of its similar size and proximity.",
"Mars, known for its reddish appearance, is often referred to as the Red Planet.",
"Jupiter, the largest planet in our solar system, has a prominent red spot.",
"Saturn, famous for its rings, is sometimes mistaken for the Red Planet."
]
query_embeddings = model.encode_query(query)
document_embeddings = model.encode_document(documents)
print(query_embeddings.shape, document_embeddings.shape)
# (768,) (4, 768)
# Compute similarities to determine a ranking
similarities = model.similarity(query_embeddings, document_embeddings)
print(similarities)
# tensor([[0.3011, 0.6359, 0.4930, 0.4889]])
```
**NOTE**: EmbeddingGemma activations do not support `float16`. Please use `float32` or `bfloat16` as appropriate for your hardware.
## Model Data
### Training Dataset
This model was trained on a dataset of text data that includes a wide variety of sources totaling approximately 320 billion tokens. Here are the key components:
- **Web Documents**: A diverse collection of web text ensures the model is exposed to a broad range of linguistic styles, topics, and vocabulary. The training dataset includes content in over 100 languages.
- **Code and Technical Documents**: Exposing the model to code and technical documentation helps it learn the structure and patterns of programming languages and specialized scientific content, which improves its understanding of code and technical questions.
- **Synthetic and Task-Specific Data**: Synthetically training data helps to teach the model specific skills. This includes curated data for tasks like information retrieval, classification, and sentiment analysis, which helps to fine-tune its performance for common embedding applications.
The combination of these diverse data sources is crucial for training a powerful multilingual embedding model that can handle a wide variety of different tasks and data formats.
### Data Preprocessing
Here are the key data cleaning and filtering methods applied to the training data:
- CSAM Filtering: Rigorous CSAM (Child Sexual Abuse Material) filtering was applied at multiple stages in the data preparation process to ensure the exclusion of harmful and illegal content.
- Sensitive Data Filtering: As part of making Gemma pre-trained models safe and reliable, automated techniques were used to filter out certain personal information and other sensitive data from training sets.
- Additional methods: Filtering based on content quality and safety in line with [our policies](https://ai.google/static/documents/ai-responsibility-update-published-february-2025.pdf).
## Model Development
### Hardware
EmbeddingGemma was trained using the latest generation of [Tensor Processing Unit (TPU)](https://cloud.google.com/tpu/docs/intro-to-tpu) hardware (TPUv5e), for more details refer to the [Gemma 3 model card](https://ai.google.dev/gemma/docs/core/model_card_3).
### Software
Training was done using [JAX](https://github.com/jax-ml/jax) and [ML Pathways](https://blog.google/technology/ai/introducing-pathways-next-generation-ai-architecture/). For more details refer to the [Gemma 3 model card](https://ai.google.dev/gemma/docs/core/model_card_3).
## Evaluation
### Benchmark Results
The model was evaluated against a large collection of different datasets and metrics to cover different aspects of text understanding.
#### Full Precision Checkpoint
<table>
<thead>
<tr>
<th colspan="3"><strong>MTEB (Multilingual, v2)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Dimensionality</strong></td>
<td><strong>Mean (Task)</strong></td>
<td><strong>Mean (TaskType)</strong></td>
</tr>
<tr>
<td>768d</td>
<td>61.15</td>
<td>54.31</td>
</tr>
<tr>
<td>512d</td>
<td>60.71</td>
<td>53.89</td>
</tr>
<tr>
<td>256d</td>
<td>59.68</td>
<td>53.01</td>
</tr>
<tr>
<td>128d</td>
<td>58.23</td>
<td>51.77</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th colspan="3"><strong>MTEB (English, v2)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Dimensionality</strong></td>
<td><strong>Mean (Task)</strong></td>
<td><strong>Mean (TaskType)</strong></td>
</tr>
<tr>
<td>768d</td>
<td>68.36</td>
<td>64.15</td>
</tr>
<tr>
<td>512d</td>
<td>67.80</td>
<td>63.59</td>
</tr>
<tr>
<td>256d</td>
<td>66.89</td>
<td>62.94</td>
</tr>
<tr>
<td>128d</td>
<td>65.09</td>
<td>61.56</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th colspan="3"><strong>MTEB (Code, v1)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Dimensionality</strong></td>
<td><strong>Mean (Task)</strong></td>
<td><strong>Mean (TaskType)</strong></td>
</tr>
<tr>
<td>768d</td>
<td>68.76</td>
<td>68.76</td>
</tr>
<tr>
<td>512d</td>
<td>68.48</td>
<td>68.48</td>
</tr>
<tr>
<td>256d</td>
<td>66.74</td>
<td>66.74</td>
</tr>
<tr>
<td>128d</td>
<td>62.96</td>
<td>62.96</td>
</tr>
</tbody>
</table>
#### QAT Checkpoints
<table>
<thead>
<tr>
<th colspan="3"><strong>MTEB (Multilingual, v2)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Quant config (dimensionality)</strong></td>
<td><strong>Mean (Task)</strong></td>
<td><strong>Mean (TaskType)</strong></td>
</tr>
<tr>
<td>Q4_0 (768d)</td>
<td>60.62</td>
<td>53.61</td>
</tr>
<tr>
<td>Q8_0 (768d)</td>
<td>60.93</td>
<td>53.95</td>
</tr>
<tr>
<td>Mixed Precision* (768d)</td>
<td>60.69</td>
<td>53.82</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th colspan="3"><strong>MTEB (English, v2)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Quant config (dimensionality)</strong></td>
<td><strong>Mean (Task)</strong></td>
<td><strong>Mean (TaskType)</strong></td>
</tr>
<tr>
<td>Q4_0 (768d)</td>
<td>67.91</td>
<td>63.64</td>
</tr>
<tr>
<td>Q8_0 (768d)</td>
<td>68.13</td>
<td>63.85</td>
</tr>
<tr>
<td>Mixed Precision* (768d)</td>
<td>67.95</td>
<td>63.83</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th colspan="3"><strong>MTEB (Code, v1)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Quant config (dimensionality)</strong></td>
<td><strong>Mean (Task)</strong></td>
<td><strong>Mean (TaskType)</strong></td>
</tr>
<tr>
<td>Q4_0 (768d)</td>
<td>67.99</td>
<td>67.99</td>
</tr>
<tr>
<td>Q8_0 (768d)</td>
<td>68.70</td>
<td>68.70</td>
</tr>
<tr>
<td>Mixed Precision* (768d)</td>
<td>68.03</td>
<td>68.03</td>
</tr>
</tbody>
</table>
Note: QAT models are evaluated after quantization
\* Mixed Precision refers to per-channel quantization with int4 for embeddings, feedforward, and projection layers, and int8 for attention (e4_a8_f4_p4).
### Prompt Instructions
EmbeddingGemma can generate optimized embeddings for various use cases—such as document retrieval, question answering, and fact verification—or for specific input types—either a query or a document—using prompts that are prepended to the input strings.
Query prompts follow the form `task: {task description} | query: ` where the task description varies by the use case, with the default task description being `search result`. Document-style prompts follow the form `title: {title | "none"} | text: ` where the title is either `none` (the default) or the actual title of the document. Note that providing a title, if available, will improve model performance for document prompts but may require manual formatting.
Use the following prompts based on your use case and input data type. These may already be available in the EmbeddingGemma configuration in your modeling framework of choice.
<table>
<thead>
<tr>
<th><br>
<strong>Use Case (task type enum)</strong></th>
<th><br>
<strong>Descriptions</strong></th>
<th><br>
<strong>Recommended Prompt</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><br>
Retrieval (Query)</td>
<td rowspan="4"><br>
Used to generate embeddings that are optimized for document search or information retrieval</td>
<td><br>
task: search result | query: {content}</td>
</tr>
<tr>
<td><br>
Retrieval (Document)</td>
<td><br>
title: {title | "none"} | text: {content}</td>
</tr>
<tr>
<td><br>
Question Answering</td>
<td><br>
task: question answering | query: {content}</td>
</tr>
<tr>
<td><br>
Fact Verification</td>
<td><br>
task: fact checking | query: {content}</td>
</tr>
<tr>
<td><br>
Classification</td>
<td><br>
Used to generate embeddings that are optimized to classify texts according to preset labels</td>
<td><br>
task: classification | query: {content}</td>
</tr>
<tr>
<td><br>
Clustering</td>
<td><br>
Used to generate embeddings that are optimized to cluster texts based on their similarities</td>
<td><br>
task: clustering | query: {content}</td>
</tr>
<tr>
<td><br>
Semantic Similarity</td>
<td><br>
Used to generate embeddings that are optimized to assess text similarity. This is not intended for retrieval use cases.</td>
<td><br>
task: sentence similarity | query: {content}</td>
</tr>
<tr>
<td><br>
Code Retrieval</td>
<td><br>
Used to retrieve a code block based on a natural language query, such as <em>sort an array</em> or <em>reverse a linked list</em>. Embeddings of the code blocks are computed using retrieval_document.</td>
<td><br>
task: code retrieval | query: {content}</td>
</tr>
</tbody>
</table>
## Usage and Limitations
These models have certain limitations that users should be aware of.
### Intended Usage
Open embedding models have a wide range of applications across various industries and domains. The following list of potential uses is not comprehensive. The purpose of this list is to provide contextual information about the possible use-cases that the model creators considered as part of model training and development.
- **Semantic Similarity**: Embeddings optimized to assess text similarity, such as recommendation systems and duplicate detection
- **Classification**: Embeddings optimized to classify texts according to preset labels, such as sentiment analysis and spam detection
- **Clustering**: Embeddings optimized to cluster texts based on their similarities, such as document organization, market research, and anomaly detection
- **Retrieval**
- **Document**: Embeddings optimized for document search, such as indexing articles, books, or web pages for search
- **Query**: Embeddings optimized for general search queries, such as custom search
- **Code Query**: Embeddings optimized for retrieval of code blocks based on natural language queries, such as code suggestions and search
- **Question Answering**: Embeddings for questions in a question-answering system, optimized for finding documents that answer the question, such as chatbox.
- **Fact Verification**: Embeddings for statements that need to be verified, optimized for retrieving documents that contain evidence supporting or refuting the statement, such as automated fact-checking systems.
### Limitations
- Training Data
- The quality and diversity of the training data significantly influence the model's capabilities. Biases or gaps in the training data can lead to limitations in the model's responses.
- The scope of the training dataset determines the subject areas the model can handle effectively.
- Language Ambiguity and Nuance
- Natural language is inherently complex. Models might struggle to grasp subtle nuances, sarcasm, or figurative language.
### Ethical Considerations and Risks
Risks identified and mitigations:
- **Perpetuation of biases**: It's encouraged to perform continuous monitoring (using evaluation metrics, human review) and the exploration of de-biasing techniques during model training, fine-tuning, and other use cases.
- **Misuse for malicious purposes**: Technical limitations and developer and end-user education can help mitigate against malicious applications of embeddings. Educational resources and reporting mechanisms for users to flag misuse are provided. Prohibited uses of Gemma models are outlined in the [Gemma Prohibited Use Policy](https://ai.google.dev/gemma/prohibited_use_policy).
- **Privacy violations**: Models were trained on data filtered for removal of certain personal information and other sensitive data. Developers are encouraged to adhere to privacy regulations with privacy-preserving techniques.
### Benefits
At the time of release, this family of models provides high-performance open embedding model implementations designed from the ground up for responsible AI development compared to similarly sized models. Using the benchmark evaluation metrics described in this document, these models have shown superior performance to other, comparably-sized open model alternatives. |