Sci-fi-vy commited on
Commit
2d7b70b
·
verified ·
1 Parent(s): 8f54110

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +528 -3
README.md CHANGED
@@ -1,3 +1,528 @@
1
- ---
2
- license: gemma
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - google/gemma-3-270m-it
4
+ license: gemma
5
+ tags:
6
+ - gemma3
7
+ - gemma
8
+ - google
9
+ pipeline_tag: text-generation
10
+ library_name: transformers
11
+ ---
12
+ > [!NOTE]
13
+ > Please use the correct settings: `temperature = 1.0, top_k = 64, top_p = 0.95, min_p = 0.0`
14
+ >
15
+
16
+ # Gemma 3 model card
17
+
18
+ **Model Page**: [Gemma](https://ai.google.dev/gemma/docs/core)
19
+
20
+ **Resources and Technical Documentation**:
21
+
22
+ * [Gemma 3 Technical Report][g3-tech-report]
23
+ * [Responsible Generative AI Toolkit][rai-toolkit]
24
+ * [Gemma on Kaggle][kaggle-gemma]
25
+ * [Gemma on Vertex Model Garden][vertex-mg-gemma3]
26
+
27
+ **Terms of Use**: [Terms][terms]
28
+
29
+ **Authors**: Google DeepMind
30
+
31
+ ## Model Information
32
+
33
+ Summary description and brief definition of inputs and outputs.
34
+
35
+ ### Description
36
+
37
+ Gemma is a family of lightweight, state-of-the-art open models from Google,
38
+ built from the same research and technology used to create the Gemini models.
39
+ Gemma 3 models are multimodal, handling text and image input and generating text
40
+ output, with open weights for both pre-trained variants and instruction-tuned
41
+ variants. Gemma 3 has a large, 128K context window, multilingual support in over
42
+ 140 languages, and is available in more sizes than previous versions. Gemma 3
43
+ models are well-suited for a variety of text generation and image understanding
44
+ tasks, including question answering, summarization, and reasoning. Their
45
+ relatively small size makes it possible to deploy them in environments with
46
+ limited resources such as laptops, desktops or your own cloud infrastructure,
47
+ democratizing access to state of the art AI models and helping foster innovation
48
+ for everyone.
49
+
50
+ ### Inputs and outputs
51
+
52
+ - **Input:**
53
+ - Text string, such as a question, a prompt, or a document to be summarized
54
+ - Images, normalized to 896 x 896 resolution and encoded to 256 tokens
55
+ each, for the 4B, 12B, and 27B sizes.
56
+ - Total input context of 128K tokens for the 4B, 12B, and 27B sizes, and
57
+ 32K tokens for the 1B and 270M sizes.
58
+
59
+ - **Output:**
60
+ - Generated text in response to the input, such as an answer to a
61
+ question, analysis of image content, or a summary of a document
62
+ - Total output context up to 128K tokens for the 4B, 12B, and 27B sizes,
63
+ and 32K tokens for the 1B and 270M sizes per request, subtracting the
64
+ request input tokens
65
+
66
+ ### Citation
67
+
68
+ ```none
69
+ @article{gemma_2025,
70
+ title={Gemma 3},
71
+ url={https://arxiv.org/abs/2503.19786},
72
+ publisher={Google DeepMind},
73
+ author={Gemma Team},
74
+ year={2025}
75
+ }
76
+ ```
77
+
78
+ ## Model Data
79
+
80
+ Data used for model training and how the data was processed.
81
+
82
+ ### Training Dataset
83
+
84
+ These models were trained on a dataset of text data that includes a wide variety
85
+ of sources. The 27B model was trained with 14 trillion tokens, the 12B model was
86
+ trained with 12 trillion tokens, 4B model was trained with 4 trillion tokens,
87
+ the 1B with 2 trillion tokens, and the 270M with 6 trillion tokens. The
88
+ knowledge cutoff date for the training data was August 2024. Here are the key
89
+ components:
90
+
91
+ - Web Documents: A diverse collection of web text ensures the model is
92
+ exposed to a broad range of linguistic styles, topics, and vocabulary. The
93
+ training dataset includes content in over 140 languages.
94
+ - Code: Exposing the model to code helps it to learn the syntax and
95
+ patterns of programming languages, which improves its ability to generate
96
+ code and understand code-related questions.
97
+ - Mathematics: Training on mathematical text helps the model learn logical
98
+ reasoning, symbolic representation, and to address mathematical queries.
99
+ - Images: A wide range of images enables the model to perform image
100
+ analysis and visual data extraction tasks.
101
+
102
+ The combination of these diverse data sources is crucial for training a powerful
103
+ multimodal model that can handle a wide variety of different tasks and data
104
+ formats.
105
+
106
+ ### Data Preprocessing
107
+
108
+ Here are the key data cleaning and filtering methods applied to the training
109
+ data:
110
+
111
+ - CSAM Filtering: Rigorous CSAM (Child Sexual Abuse Material) filtering
112
+ was applied at multiple stages in the data preparation process to ensure
113
+ the exclusion of harmful and illegal content.
114
+ - Sensitive Data Filtering: As part of making Gemma pre-trained models
115
+ safe and reliable, automated techniques were used to filter out certain
116
+ personal information and other sensitive data from training sets.
117
+ - Additional methods: Filtering based on content quality and safety in
118
+ line with [our policies][safety-policies].
119
+
120
+ ## Implementation Information
121
+
122
+ Details about the model internals.
123
+
124
+ ### Hardware
125
+
126
+ Gemma was trained using [Tensor Processing Unit (TPU)][tpu] hardware (TPUv4p,
127
+ TPUv5p and TPUv5e). Training vision-language models (VLMS) requires significant
128
+ computational power. TPUs, designed specifically for matrix operations common in
129
+ machine learning, offer several advantages in this domain:
130
+
131
+ - Performance: TPUs are specifically designed to handle the massive
132
+ computations involved in training VLMs. They can speed up training
133
+ considerably compared to CPUs.
134
+ - Memory: TPUs often come with large amounts of high-bandwidth memory,
135
+ allowing for the handling of large models and batch sizes during training.
136
+ This can lead to better model quality.
137
+ - Scalability: TPU Pods (large clusters of TPUs) provide a scalable
138
+ solution for handling the growing complexity of large foundation models.
139
+ You can distribute training across multiple TPU devices for faster and more
140
+ efficient processing.
141
+ - Cost-effectiveness: In many scenarios, TPUs can provide a more
142
+ cost-effective solution for training large models compared to CPU-based
143
+ infrastructure, especially when considering the time and resources saved
144
+ due to faster training.
145
+ - These advantages are aligned with
146
+ [Google's commitments to operate sustainably][sustainability].
147
+
148
+ ### Software
149
+
150
+ Training was done using [JAX][jax] and [ML Pathways][ml-pathways].
151
+
152
+ JAX allows researchers to take advantage of the latest generation of hardware,
153
+ including TPUs, for faster and more efficient training of large models. ML
154
+ Pathways is Google's latest effort to build artificially intelligent systems
155
+ capable of generalizing across multiple tasks. This is specially suitable for
156
+ foundation models, including large language models like these ones.
157
+
158
+ Together, JAX and ML Pathways are used as described in the
159
+ [paper about the Gemini family of models][gemini-2-paper]; *"the 'single
160
+ controller' programming model of Jax and Pathways allows a single Python
161
+ process to orchestrate the entire training run, dramatically simplifying the
162
+ development workflow."*
163
+
164
+ ## Evaluation
165
+
166
+ Model evaluation metrics and results.
167
+
168
+ ### Benchmark Results
169
+
170
+ These models were evaluated against a large collection of different datasets and
171
+ metrics to cover different aspects of text generation. Evaluation results marked
172
+ with **IT** are for instruction-tuned models. Evaluation results marked with
173
+ **PT** are for pre-trained models.
174
+
175
+ #### Gemma 3 270M
176
+
177
+ | **Benchmark** | **n-shot** | **Gemma 3 PT 270M** |
178
+ | :------------------------ | :-----------: | ------------------: |
179
+ | [HellaSwag][hellaswag] | 10-shot | 40.9 |
180
+ | [BoolQ][boolq] | 0-shot | 61.4 |
181
+ | [PIQA][piqa] | 0-shot | 67.7 |
182
+ | [TriviaQA][triviaqa] | 5-shot | 15.4 |
183
+ | [ARC-c][arc] | 25-shot | 29.0 |
184
+ | [ARC-e][arc] | 0-shot | 57.7 |
185
+ | [WinoGrande][winogrande] | 5-shot | 52.0 |
186
+
187
+ [hellaswag]: https://arxiv.org/abs/1905.07830
188
+ [boolq]: https://arxiv.org/abs/1905.10044
189
+ [piqa]: https://arxiv.org/abs/1911.11641
190
+ [triviaqa]: https://arxiv.org/abs/1705.03551
191
+ [arc]: https://arxiv.org/abs/1911.01547
192
+ [winogrande]: https://arxiv.org/abs/1907.10641
193
+
194
+ | **Benchmark** | **n-shot** | **Gemma 3 IT 270m** |
195
+ | :------------------------ | :-----------: | ------------------: |
196
+ | [HellaSwag][hellaswag] | 0-shot | 37.7 |
197
+ | [PIQA][piqa] | 0-shot | 66.2 |
198
+ | [ARC-c][arc] | 0-shot | 28.2 |
199
+ | [WinoGrande][winogrande] | 0-shot | 52.3 |
200
+ | [BIG-Bench Hard][bbh] | few-shot | 26.7 |
201
+ | [IF Eval][ifeval] | 0-shot | 51.2 |
202
+
203
+ [hellaswag]: https://arxiv.org/abs/1905.07830
204
+ [piqa]: https://arxiv.org/abs/1911.11641
205
+ [arc]: https://arxiv.org/abs/1911.01547
206
+ [winogrande]: https://arxiv.org/abs/1907.10641
207
+ [bbh]: https://paperswithcode.com/dataset/bbh
208
+ [bbh]: https://paperswithcode.com/dataset/bbh
209
+ [ifeval]: https://arxiv.org/abs/2311.07911
210
+
211
+ #### Gemma 3 1B, 4B, 12B & 27B
212
+
213
+ ##### Reasoning and factuality
214
+
215
+ | Benchmark | n-shot | Gemma 3 IT 1B | Gemma 3 IT 4B | Gemma 3 IT 12B | Gemma 3 IT 27B |
216
+ |--------------------------------|--------|:-------------:|:-------------:|:--------------:|:--------------:|
217
+ | [GPQA][gpqa] Diamond | 0-shot | 19.2 | 30.8 | 40.9 | 42.4 |
218
+ | [SimpleQA][simpleqa] | 0-shot | 2.2 | 4.0 | 6.3 | 10.0 |
219
+ | [FACTS Grounding][facts-grdg] | - | 36.4 | 70.1 | 75.8 | 74.9 |
220
+ | [BIG-Bench Hard][bbh] | 0-shot | 39.1 | 72.2 | 85.7 | 87.6 |
221
+ | [BIG-Bench Extra Hard][bbeh] | 0-shot | 7.2 | 11.0 | 16.3 | 19.3 |
222
+ | [IFEval][ifeval] | 0-shot | 80.2 | 90.2 | 88.9 | 90.4 |
223
+
224
+ | Benchmark | n-shot | Gemma 3 PT 1B | Gemma 3 PT 4B | Gemma 3 PT 12B | Gemma 3 PT 27B |
225
+ | ------------------------------ |----------|:--------------:|:-------------:|:--------------:|:--------------:|
226
+ | [HellaSwag][hellaswag] | 10-shot | 62.3 | 77.2 | 84.2 | 85.6 |
227
+ | [BoolQ][boolq] | 0-shot | 63.2 | 72.3 | 78.8 | 82.4 |
228
+ | [PIQA][piqa] | 0-shot | 73.8 | 79.6 | 81.8 | 83.3 |
229
+ | [SocialIQA][socialiqa] | 0-shot | 48.9 | 51.9 | 53.4 | 54.9 |
230
+ | [TriviaQA][triviaqa] | 5-shot | 39.8 | 65.8 | 78.2 | 85.5 |
231
+ | [Natural Questions][naturalq] | 5-shot | 9.48 | 20.0 | 31.4 | 36.1 |
232
+ | [ARC-c][arc] | 25-shot | 38.4 | 56.2 | 68.9 | 70.6 |
233
+ | [ARC-e][arc] | 0-shot | 73.0 | 82.4 | 88.3 | 89.0 |
234
+ | [WinoGrande][winogrande] | 5-shot | 58.2 | 64.7 | 74.3 | 78.8 |
235
+ | [BIG-Bench Hard][bbh] | few-shot | 28.4 | 50.9 | 72.6 | 77.7 |
236
+ | [DROP][drop] | 1-shot | 42.4 | 60.1 | 72.2 | 77.2 |
237
+
238
+ [gpqa]: https://arxiv.org/abs/2311.12022
239
+ [simpleqa]: https://arxiv.org/abs/2411.04368
240
+ [facts-grdg]: https://goo.gle/FACTS_paper
241
+ [bbeh]: https://github.com/google-deepmind/bbeh
242
+ [ifeval]: https://arxiv.org/abs/2311.07911
243
+ [hellaswag]: https://arxiv.org/abs/1905.07830
244
+ [boolq]: https://arxiv.org/abs/1905.10044
245
+ [piqa]: https://arxiv.org/abs/1911.11641
246
+ [socialiqa]: https://arxiv.org/abs/1904.09728
247
+ [triviaqa]: https://arxiv.org/abs/1705.03551
248
+ [naturalq]: https://github.com/google-research-datasets/natural-questions
249
+ [arc]: https://arxiv.org/abs/1911.01547
250
+ [winogrande]: https://arxiv.org/abs/1907.10641
251
+ [bbh]: https://paperswithcode.com/dataset/bbh
252
+ [drop]: https://arxiv.org/abs/1903.00161
253
+
254
+ ##### STEM and code
255
+
256
+ | Benchmark | n-shot | Gemma 3 IT 1B | Gemma 3 IT 4B | Gemma 3 IT 12B | Gemma 3 IT 27B |
257
+ |----------------------------|--------|:-------------:|:-------------:|:--------------:|:--------------:|
258
+ | [MMLU][mmlu] (Pro) | 0-shot | 14.7 | 43.6 | 60.6 | 67.5 |
259
+ | [LiveCodeBench][lcb] | 0-shot | 1.9 | 12.6 | 24.6 | 29.7 |
260
+ | [Bird-SQL][bird-sql] (dev) | - | 6.4 | 36.3 | 47.9 | 54.4 |
261
+ | [Math][math] | 0-shot | 48.0 | 75.6 | 83.8 | 89.0 |
262
+ | HiddenMath | 0-shot | 15.8 | 43.0 | 54.5 | 60.3 |
263
+ | [MBPP][mbpp] | 3-shot | 35.2 | 63.2 | 73.0 | 74.4 |
264
+ | [HumanEval][humaneval] | 0-shot | 41.5 | 71.3 | 85.4 | 87.8 |
265
+ | [Natural2Code][nat2code] | 0-shot | 56.0 | 70.3 | 80.7 | 84.5 |
266
+ | [GSM8K][gsm8k] | 0-shot | 62.8 | 89.2 | 94.4 | 95.9 |
267
+
268
+ | Benchmark | n-shot | Gemma 3 PT 4B | Gemma 3 PT 12B | Gemma 3 PT 27B |
269
+ | ------------------------------ |----------------|:-------------:|:--------------:|:--------------:|
270
+ | [MMLU][mmlu] | 5-shot | 59.6 | 74.5 | 78.6 |
271
+ | [MMLU][mmlu] (Pro COT) | 5-shot | 29.2 | 45.3 | 52.2 |
272
+ | [AGIEval][agieval] | 3-5-shot | 42.1 | 57.4 | 66.2 |
273
+ | [MATH][math] | 4-shot | 24.2 | 43.3 | 50.0 |
274
+ | [GSM8K][gsm8k] | 8-shot | 38.4 | 71.0 | 82.6 |
275
+ | [GPQA][gpqa] | 5-shot | 15.0 | 25.4 | 24.3 |
276
+ | [MBPP][mbpp] | 3-shot | 46.0 | 60.4 | 65.6 |
277
+ | [HumanEval][humaneval] | 0-shot | 36.0 | 45.7 | 48.8 |
278
+
279
+ [mmlu]: https://arxiv.org/abs/2009.03300
280
+ [agieval]: https://arxiv.org/abs/2304.06364
281
+ [math]: https://arxiv.org/abs/2103.03874
282
+ [gsm8k]: https://arxiv.org/abs/2110.14168
283
+ [gpqa]: https://arxiv.org/abs/2311.12022
284
+ [mbpp]: https://arxiv.org/abs/2108.07732
285
+ [humaneval]: https://arxiv.org/abs/2107.03374
286
+ [lcb]: https://arxiv.org/abs/2403.07974
287
+ [bird-sql]: https://arxiv.org/abs/2305.03111
288
+ [nat2code]: https://arxiv.org/abs/2405.04520
289
+
290
+ #### Multilingual
291
+
292
+ | Benchmark | n-shot | Gemma 3 IT 1B | Gemma 3 IT 4B | Gemma 3 IT 12B | Gemma 3 IT 27B |
293
+ |--------------------------------------|--------|:-------------:|:-------------:|:--------------:|:--------------:|
294
+ | [Global-MMLU-Lite][global-mmlu-lite] | 0-shot | 34.2 | 54.5 | 69.5 | 75.1 |
295
+ | [ECLeKTic][eclektic] | 0-shot | 1.4 | 4.6 | 10.3 | 16.7 |
296
+ | [WMT24++][wmt24pp] | 0-shot | 35.9 | 46.8 | 51.6 | 53.4 |
297
+
298
+ | Benchmark | Gemma 3 PT 1B | Gemma 3 PT 4B | Gemma 3 PT 12B | Gemma 3 PT 27B |
299
+ | ------------------------------------ |:-------------:|:-------------:|:--------------:|:--------------:|
300
+ | [MGSM][mgsm] | 2.04 | 34.7 | 64.3 | 74.3 |
301
+ | [Global-MMLU-Lite][global-mmlu-lite] | 24.9 | 57.0 | 69.4 | 75.7 |
302
+ | [WMT24++][wmt24pp] (ChrF) | 36.7 | 48.4 | 53.9 | 55.7 |
303
+ | [FloRes][flores] | 29.5 | 39.2 | 46.0 | 48.8 |
304
+ | [XQuAD][xquad] (all) | 43.9 | 68.0 | 74.5 | 76.8 |
305
+ | [ECLeKTic][eclektic] | 4.69 | 11.0 | 17.2 | 24.4 |
306
+ | [IndicGenBench][indicgenbench] | 41.4 | 57.2 | 61.7 | 63.4 |
307
+
308
+ [mgsm]: https://arxiv.org/abs/2210.03057
309
+ [flores]: https://arxiv.org/abs/2106.03193
310
+ [xquad]: https://arxiv.org/abs/1910.11856v3
311
+ [global-mmlu-lite]: https://huggingface.co/datasets/CohereForAI/Global-MMLU-Lite
312
+ [wmt24pp]: https://arxiv.org/abs/2502.12404v1
313
+ [eclektic]: https://arxiv.org/abs/2502.21228
314
+ [indicgenbench]: https://arxiv.org/abs/2404.16816
315
+
316
+ ##### Multimodal
317
+
318
+ | Benchmark | Gemma 3 IT 4B | Gemma 3 IT 12B | Gemma 3 IT 27B |
319
+ |-----------------------------------|:-------------:|:--------------:|:--------------:|
320
+ | [MMMU][mmmu] (val) | 48.8 | 59.6 | 64.9 |
321
+ | [DocVQA][docvqa] | 75.8 | 87.1 | 86.6 |
322
+ | [InfoVQA][info-vqa] | 50.0 | 64.9 | 70.6 |
323
+ | [TextVQA][textvqa] | 57.8 | 67.7 | 65.1 |
324
+ | [AI2D][ai2d] | 74.8 | 84.2 | 84.5 |
325
+ | [ChartQA][chartqa] | 68.8 | 75.7 | 78.0 |
326
+ | [VQAv2][vqav2] (val) | 62.4 | 71.6 | 71.0 |
327
+ | [MathVista][mathvista] (testmini) | 50.0 | 62.9 | 67.6 |
328
+
329
+ | Benchmark | Gemma 3 PT 4B | Gemma 3 PT 12B | Gemma 3 PT 27B |
330
+ | ------------------------------ |:-------------:|:--------------:|:--------------:|
331
+ | [COCOcap][coco-cap] | 102 | 111 | 116 |
332
+ | [DocVQA][docvqa] (val) | 72.8 | 82.3 | 85.6 |
333
+ | [InfoVQA][info-vqa] (val) | 44.1 | 54.8 | 59.4 |
334
+ | [MMMU][mmmu] (pt) | 39.2 | 50.3 | 56.1 |
335
+ | [TextVQA][textvqa] (val) | 58.9 | 66.5 | 68.6 |
336
+ | [RealWorldQA][realworldqa] | 45.5 | 52.2 | 53.9 |
337
+ | [ReMI][remi] | 27.3 | 38.5 | 44.8 |
338
+ | [AI2D][ai2d] | 63.2 | 75.2 | 79.0 |
339
+ | [ChartQA][chartqa] | 63.6 | 74.7 | 76.3 |
340
+ | [VQAv2][vqav2] | 63.9 | 71.2 | 72.9 |
341
+ | [BLINK][blinkvqa] | 38.0 | 35.9 | 39.6 |
342
+ | [OKVQA][okvqa] | 51.0 | 58.7 | 60.2 |
343
+ | [TallyQA][tallyqa] | 42.5 | 51.8 | 54.3 |
344
+ | [SpatialSense VQA][ss-vqa] | 50.9 | 60.0 | 59.4 |
345
+ | [CountBenchQA][countbenchqa] | 26.1 | 17.8 | 68.0 |
346
+
347
+ [coco-cap]: https://cocodataset.org/#home
348
+ [docvqa]: https://www.docvqa.org/
349
+ [info-vqa]: https://arxiv.org/abs/2104.12756
350
+ [mmmu]: https://arxiv.org/abs/2311.16502
351
+ [textvqa]: https://textvqa.org/
352
+ [realworldqa]: https://paperswithcode.com/dataset/realworldqa
353
+ [remi]: https://arxiv.org/html/2406.09175v1
354
+ [ai2d]: https://allenai.org/data/diagrams
355
+ [chartqa]: https://arxiv.org/abs/2203.10244
356
+ [vqav2]: https://visualqa.org/index.html
357
+ [blinkvqa]: https://arxiv.org/abs/2404.12390
358
+ [okvqa]: https://okvqa.allenai.org/
359
+ [tallyqa]: https://arxiv.org/abs/1810.12440
360
+ [ss-vqa]: https://arxiv.org/abs/1908.02660
361
+ [countbenchqa]: https://github.com/google-research/big_vision/blob/main/big_vision/datasets/countbenchqa/
362
+ [mathvista]: https://arxiv.org/abs/2310.02255
363
+
364
+ ## Ethics and Safety
365
+
366
+ Ethics and safety evaluation approach and results.
367
+
368
+ ### Evaluation Approach
369
+
370
+ Our evaluation methods include structured evaluations and internal red-teaming
371
+ testing of relevant content policies. Red-teaming was conducted by a number of
372
+ different teams, each with different goals and human evaluation metrics. These
373
+ models were evaluated against a number of different categories relevant to
374
+ ethics and safety, including:
375
+
376
+ - **Child Safety**: Evaluation of text-to-text and image to text prompts
377
+ covering child safety policies, including child sexual abuse and
378
+ exploitation.
379
+ - **Content Safety:** Evaluation of text-to-text and image to text prompts
380
+ covering safety policies including, harassment, violence and gore, and hate
381
+ speech.
382
+ - **Representational Harms**: Evaluation of text-to-text and image to text
383
+ prompts covering safety policies including bias, stereotyping, and harmful
384
+ associations or inaccuracies.
385
+
386
+ In addition to development level evaluations, we conduct "assurance
387
+ evaluations" which are our 'arms-length' internal evaluations for responsibility
388
+ governance decision making. They are conducted separately from the model
389
+ development team, to inform decision making about release. High level findings
390
+ are fed back to the model team, but prompt sets are held-out to prevent
391
+ overfitting and preserve the results' ability to inform decision making.
392
+ Assurance evaluation results are reported to our Responsibility & Safety Council
393
+ as part of release review.
394
+
395
+ ### Evaluation Results
396
+
397
+ For all areas of safety testing, we saw major improvements in the categories of
398
+ child safety, content safety, and representational harms relative to previous
399
+ Gemma models. All testing was conducted without safety filters to evaluate the
400
+ model capabilities and behaviors. For both text-to-text and image-to-text, and
401
+ across all model sizes, the model produced minimal policy violations, and showed
402
+ significant improvements over previous Gemma models' performance with respect
403
+ to ungrounded inferences. A limitation of our evaluations was they included only
404
+ English language prompts.
405
+
406
+ ## Usage and Limitations
407
+
408
+ These models have certain limitations that users should be aware of.
409
+
410
+ ### Intended Usage
411
+
412
+ Open vision-language models (VLMs) models have a wide range of applications
413
+ across various industries and domains. The following list of potential uses is
414
+ not comprehensive. The purpose of this list is to provide contextual information
415
+ about the possible use-cases that the model creators considered as part of model
416
+ training and development.
417
+
418
+ - Content Creation and Communication
419
+ - Text Generation: These models can be used to generate creative text
420
+ formats such as poems, scripts, code, marketing copy, and email drafts.
421
+ - Chatbots and Conversational AI: Power conversational interfaces
422
+ for customer service, virtual assistants, or interactive applications.
423
+ - Text Summarization: Generate concise summaries of a text corpus,
424
+ research papers, or reports.
425
+ - Image Data Extraction: These models can be used to extract,
426
+ interpret, and summarize visual data for text communications.
427
+ - Research and Education
428
+ - Natural Language Processing (NLP) and VLM Research: These
429
+ models can serve as a foundation for researchers to experiment with VLM
430
+ and NLP techniques, develop algorithms, and contribute to the
431
+ advancement of the field.
432
+ - Language Learning Tools: Support interactive language learning
433
+ experiences, aiding in grammar correction or providing writing practice.
434
+ - Knowledge Exploration: Assist researchers in exploring large
435
+ bodies of text by generating summaries or answering questions about
436
+ specific topics.
437
+
438
+ ### Limitations
439
+
440
+ - Training Data
441
+ - The quality and diversity of the training data significantly
442
+ influence the model's capabilities. Biases or gaps in the training data
443
+ can lead to limitations in the model's responses.
444
+ - The scope of the training dataset determines the subject areas
445
+ the model can handle effectively.
446
+ - Context and Task Complexity
447
+ - Models are better at tasks that can be framed with clear
448
+ prompts and instructions. Open-ended or highly complex tasks might be
449
+ challenging.
450
+ - A model's performance can be influenced by the amount of context
451
+ provided (longer context generally leads to better outputs, up to a
452
+ certain point).
453
+ - Language Ambiguity and Nuance
454
+ - Natural language is inherently complex. Models might struggle
455
+ to grasp subtle nuances, sarcasm, or figurative language.
456
+ - Factual Accuracy
457
+ - Models generate responses based on information they learned
458
+ from their training datasets, but they are not knowledge bases. They
459
+ may generate incorrect or outdated factual statements.
460
+ - Common Sense
461
+ - Models rely on statistical patterns in language. They might
462
+ lack the ability to apply common sense reasoning in certain situations.
463
+
464
+ ### Ethical Considerations and Risks
465
+
466
+ The development of vision-language models (VLMs) raises several ethical
467
+ concerns. In creating an open model, we have carefully considered the following:
468
+
469
+ - Bias and Fairness
470
+ - VLMs trained on large-scale, real-world text and image data can
471
+ reflect socio-cultural biases embedded in the training material. These
472
+ models underwent careful scrutiny, input data pre-processing described
473
+ and posterior evaluations reported in this card.
474
+ - Misinformation and Misuse
475
+ - VLMs can be misused to generate text that is false, misleading,
476
+ or harmful.
477
+ - Guidelines are provided for responsible use with the model, see the
478
+ [Responsible Generative AI Toolkit][rai-toolkit].
479
+ - Transparency and Accountability:
480
+ - This model card summarizes details on the models' architecture,
481
+ capabilities, limitations, and evaluation processes.
482
+ - A responsibly developed open model offers the opportunity to
483
+ share innovation by making VLM technology accessible to developers and
484
+ researchers across the AI ecosystem.
485
+
486
+ Risks identified and mitigations:
487
+
488
+ - **Perpetuation of biases**: It's encouraged to perform continuous
489
+ monitoring (using evaluation metrics, human review) and the exploration of
490
+ de-biasing techniques during model training, fine-tuning, and other use
491
+ cases.
492
+ - **Generation of harmful content**: Mechanisms and guidelines for content
493
+ safety are essential. Developers are encouraged to exercise caution and
494
+ implement appropriate content safety safeguards based on their specific
495
+ product policies and application use cases.
496
+ - **Misuse for malicious purposes**: Technical limitations and developer
497
+ and end-user education can help mitigate against malicious applications of
498
+ VLMs. Educational resources and reporting mechanisms for users to flag
499
+ misuse are provided. Prohibited uses of Gemma models are outlined in the
500
+ [Gemma Prohibited Use Policy][prohibited-use].
501
+ - **Privacy violations**: Models were trained on data filtered for removal
502
+ of certain personal information and other sensitive data. Developers are
503
+ encouraged to adhere to privacy regulations with privacy-preserving
504
+ techniques.
505
+
506
+ ### Benefits
507
+
508
+ At the time of release, this family of models provides high-performance open
509
+ vision-language model implementations designed from the ground up for
510
+ responsible AI development compared to similarly sized models.
511
+
512
+ Using the benchmark evaluation metrics described in this document, these models
513
+ have shown to provide superior performance to other, comparably-sized open model
514
+ alternatives.
515
+
516
+ [g3-tech-report]: https://arxiv.org/abs/2503.19786
517
+ [rai-toolkit]: https://ai.google.dev/responsible
518
+ [kaggle-gemma]: https://www.kaggle.com/models/google/gemma-3
519
+ [vertex-mg-gemma3]: https://console.cloud.google.com/vertex-ai/publishers/google/model-garden/gemma3
520
+ [terms]: https://ai.google.dev/gemma/terms
521
+ [safety-policies]: https://ai.google/static/documents/ai-responsibility-update-published-february-2025.pdf
522
+ [prohibited-use]: https://ai.google.dev/gemma/prohibited_use_policy
523
+ [tpu]: https://cloud.google.com/tpu/docs/intro-to-tpu
524
+ [sustainability]: https://sustainability.google/operating-sustainably/
525
+ [jax]: https://github.com/jax-ml/jax
526
+ [ml-pathways]: https://blog.google/technology/ai/introducing-pathways-next-generation-ai-architecture/
527
+ [sustainability]: https://sustainability.google/operating-sustainably/
528
+ [gemini-2-paper]: https://arxiv.org/abs/2312.11805