Kearm commited on
Commit
1b9b534
1 Parent(s): 108f826

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +440 -1
README.md CHANGED
@@ -15,4 +15,443 @@ This model was trained on the teknium OpenHeremes-2.5 dataset and the from Cogn
15
  This model was trained for 3 epochs over 4 3090's.
16
 
17
 
18
- # Original Model Card Below
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  This model was trained for 3 epochs over 4 3090's.
16
 
17
 
18
+ # Original Model Card Below
19
+
20
+ # Gemma Model Card
21
+
22
+ **Model Page**: [Gemma](https://ai.google.dev/gemma/docs)
23
+
24
+ This model card corresponds to the 2B base version of the Gemma model. You can also visit the model card of the [7B base model](https://huggingface.co/google/gemma-7b), [7B instruct model](https://huggingface.co/google/gemma-7b-it), and [2B instruct model](https://huggingface.co/google/gemma-2b-it).
25
+
26
+ **Resources and Technical Documentation**:
27
+
28
+ * [Responsible Generative AI Toolkit](https://ai.google.dev/responsible)
29
+ * [Gemma on Kaggle](https://www.kaggle.com/models/google/gemma)
30
+ * [Gemma on Vertex Model Garden](https://console.cloud.google.com/vertex-ai/publishers/google/model-garden/335?version=gemma-2b-gg-hf)
31
+
32
+ **Terms of Use**: [Terms](https://www.kaggle.com/models/google/gemma/license/consent)
33
+
34
+ **Authors**: Google
35
+
36
+ ## Model Information
37
+
38
+ Summary description and brief definition of inputs and outputs.
39
+
40
+ ### Description
41
+
42
+ Gemma is a family of lightweight, state-of-the-art open models from Google,
43
+ built from the same research and technology used to create the Gemini models.
44
+ They are text-to-text, decoder-only large language models, available in English,
45
+ with open weights, pre-trained variants, and instruction-tuned variants. Gemma
46
+ models are well-suited for a variety of text generation tasks, including
47
+ question answering, summarization, and reasoning. Their relatively small size
48
+ makes it possible to deploy them in environments with limited resources such as
49
+ a laptop, desktop or your own cloud infrastructure, democratizing access to
50
+ state of the art AI models and helping foster innovation for everyone.
51
+
52
+ ### Usage
53
+
54
+ Below we share some code snippets on how to get quickly started with running the model. First make sure to `pip install -U transformers`, then copy the snippet from the section that is relevant for your usecase.
55
+
56
+
57
+ #### Fine-tuning the model
58
+
59
+ You can find fine-tuning scripts and notebook under the [`examples/` directory](https://huggingface.co/google/gemma-7b/tree/main/examples) of [`google/gemma-7b`](https://huggingface.co/google/gemma-7b) repository. To adapt it to this model, simply change the model-id to `google/gemma-2b`.
60
+ In that repository, we provide:
61
+
62
+ * A script to perform Supervised Fine-Tuning (SFT) on UltraChat dataset using QLoRA
63
+ * A script to perform SFT using FSDP on TPU devices
64
+ * A notebook that you can run on a free-tier Google Colab instance to perform SFT on English quotes dataset
65
+
66
+
67
+
68
+ #### Running the model on a CPU
69
+
70
+
71
+ ```python
72
+ from transformers import AutoTokenizer, AutoModelForCausalLM
73
+
74
+ tokenizer = AutoTokenizer.from_pretrained("google/gemma-2b")
75
+ model = AutoModelForCausalLM.from_pretrained("google/gemma-2b")
76
+
77
+ input_text = "Write me a poem about Machine Learning."
78
+ input_ids = tokenizer(input_text, return_tensors="pt")
79
+
80
+ outputs = model.generate(**input_ids)
81
+ print(tokenizer.decode(outputs[0]))
82
+ ```
83
+
84
+
85
+ #### Running the model on a single / multi GPU
86
+
87
+
88
+ ```python
89
+ # pip install accelerate
90
+ from transformers import AutoTokenizer, AutoModelForCausalLM
91
+
92
+ tokenizer = AutoTokenizer.from_pretrained("google/gemma-2b")
93
+ model = AutoModelForCausalLM.from_pretrained("google/gemma-2b", device_map="auto")
94
+
95
+ input_text = "Write me a poem about Machine Learning."
96
+ input_ids = tokenizer(input_text, return_tensors="pt").to("cuda")
97
+
98
+ outputs = model.generate(**input_ids)
99
+ print(tokenizer.decode(outputs[0]))
100
+ ```
101
+
102
+
103
+ #### Running the model on a GPU using different precisions
104
+
105
+ * _Using `torch.float16`_
106
+
107
+ ```python
108
+ # pip install accelerate
109
+ from transformers import AutoTokenizer, AutoModelForCausalLM
110
+
111
+ tokenizer = AutoTokenizer.from_pretrained("google/gemma-2b")
112
+ model = AutoModelForCausalLM.from_pretrained("google/gemma-2b", device_map="auto", torch_dtype=torch.float16)
113
+
114
+ input_text = "Write me a poem about Machine Learning."
115
+ input_ids = tokenizer(input_text, return_tensors="pt").to("cuda")
116
+
117
+ outputs = model.generate(**input_ids)
118
+ print(tokenizer.decode(outputs[0]))
119
+ ```
120
+
121
+ * _Using `torch.bfloat16`_
122
+
123
+ ```python
124
+ # pip install accelerate
125
+ from transformers import AutoTokenizer, AutoModelForCausalLM
126
+
127
+ tokenizer = AutoTokenizer.from_pretrained("google/gemma-2b")
128
+ model = AutoModelForCausalLM.from_pretrained("google/gemma-2b", device_map="auto", torch_dtype=torch.bfloat16)
129
+
130
+ input_text = "Write me a poem about Machine Learning."
131
+ input_ids = tokenizer(input_text, return_tensors="pt").to("cuda")
132
+
133
+ outputs = model.generate(**input_ids)
134
+ print(tokenizer.decode(outputs[0]))
135
+ ```
136
+
137
+ #### Quantized Versions through `bitsandbytes`
138
+
139
+ * _Using 8-bit precision (int8)_
140
+
141
+ ```python
142
+ # pip install bitsandbytes accelerate
143
+ from transformers import AutoTokenizer, AutoModelForCausalLM, BitsAndBytesConfig
144
+
145
+ quantization_config = BitsAndBytesConfig(load_in_8bit=True)
146
+
147
+ tokenizer = AutoTokenizer.from_pretrained("google/gemma-2b")
148
+ model = AutoModelForCausalLM.from_pretrained("google/gemma-2b", quantization_config=quantization_config)
149
+
150
+ input_text = "Write me a poem about Machine Learning."
151
+ input_ids = tokenizer(input_text, return_tensors="pt").to("cuda")
152
+
153
+ outputs = model.generate(**input_ids)
154
+ print(tokenizer.decode(outputs[0]))
155
+ ```
156
+
157
+ * _Using 4-bit precision_
158
+
159
+ ```python
160
+ # pip install bitsandbytes accelerate
161
+ from transformers import AutoTokenizer, AutoModelForCausalLM, BitsAndBytesConfig
162
+
163
+ quantization_config = BitsAndBytesConfig(load_in_4bit=True)
164
+
165
+ tokenizer = AutoTokenizer.from_pretrained("google/gemma-2b")
166
+ model = AutoModelForCausalLM.from_pretrained("google/gemma-2b", quantization_config=quantization_config)
167
+
168
+ input_text = "Write me a poem about Machine Learning."
169
+ input_ids = tokenizer(input_text, return_tensors="pt").to("cuda")
170
+
171
+ outputs = model.generate(**input_ids)
172
+ print(tokenizer.decode(outputs[0]))
173
+ ```
174
+
175
+
176
+ #### Other optimizations
177
+
178
+ * _Flash Attention 2_
179
+
180
+ First make sure to install `flash-attn` in your environment `pip install flash-attn`
181
+
182
+ ```diff
183
+ model = AutoModelForCausalLM.from_pretrained(
184
+ model_id,
185
+ torch_dtype=torch.float16,
186
+ + attn_implementation="flash_attention_2"
187
+ ).to(0)
188
+ ```
189
+
190
+ ### Inputs and outputs
191
+
192
+ * **Input:** Text string, such as a question, a prompt, or a document to be
193
+ summarized.
194
+ * **Output:** Generated English-language text in response to the input, such
195
+ as an answer to a question, or a summary of a document.
196
+
197
+ ## Model Data
198
+
199
+ Data used for model training and how the data was processed.
200
+
201
+ ### Training Dataset
202
+
203
+ These models were trained on a dataset of text data that includes a wide variety
204
+ of sources, totaling 6 trillion tokens. Here are the key components:
205
+
206
+ * Web Documents: A diverse collection of web text ensures the model is exposed
207
+ to a broad range of linguistic styles, topics, and vocabulary. Primarily
208
+ English-language content.
209
+ * Code: Exposing the model to code helps it to learn the syntax and patterns of
210
+ programming languages, which improves its ability to generate code or
211
+ understand code-related questions.
212
+ * Mathematics: Training on mathematical text helps the model learn logical
213
+ reasoning, symbolic representation, and to address mathematical queries.
214
+
215
+ The combination of these diverse data sources is crucial for training a powerful
216
+ language model that can handle a wide variety of different tasks and text
217
+ formats.
218
+
219
+ ### Data Preprocessing
220
+
221
+ Here are the key data cleaning and filtering methods applied to the training
222
+ data:
223
+
224
+ * CSAM Filtering: Rigorous CSAM (Child Sexual Abuse Material) filtering was
225
+ applied at multiple stages in the data preparation process to ensure the
226
+ exclusion of harmful and illegal content
227
+ * Sensitive Data Filtering: As part of making Gemma pre-trained models safe and
228
+ reliable, automated techniques were used to filter out certain personal
229
+ information and other sensitive data from training sets.
230
+ * Additional methods: Filtering based on content quality and safely in line with
231
+ [our policies](https://storage.googleapis.com/gweb-uniblog-publish-prod/documents/2023_Google_AI_Principles_Progress_Update.pdf#page=11).
232
+
233
+ ## Implementation Information
234
+
235
+ Details about the model internals.
236
+
237
+ ### Hardware
238
+
239
+ Gemma was trained using the latest generation of
240
+ [Tensor Processing Unit (TPU)](https://cloud.google.com/tpu/docs/intro-to-tpu) hardware (TPUv5e).
241
+
242
+ Training large language models requires significant computational power. TPUs,
243
+ designed specifically for matrix operations common in machine learning, offer
244
+ several advantages in this domain:
245
+
246
+ * Performance: TPUs are specifically designed to handle the massive computations
247
+ involved in training LLMs. They can speed up training considerably compared to
248
+ CPUs.
249
+ * Memory: TPUs often come with large amounts of high-bandwidth memory, allowing
250
+ for the handling of large models and batch sizes during training. This can
251
+ lead to better model quality.
252
+ * Scalability: TPU Pods (large clusters of TPUs) provide a scalable solution for
253
+ handling the growing complexity of large foundation models. You can distribute
254
+ training across multiple TPU devices for faster and more efficient processing.
255
+ * Cost-effectiveness: In many scenarios, TPUs can provide a more cost-effective
256
+ solution for training large models compared to CPU-based infrastructure,
257
+ especially when considering the time and resources saved due to faster
258
+ training.
259
+ * These advantages are aligned with
260
+ [Google's commitments to operate sustainably](https://sustainability.google/operating-sustainably/).
261
+
262
+ ### Software
263
+
264
+ Training was done using [JAX](https://github.com/google/jax) and [ML Pathways](https://blog.google/technology/ai/introducing-pathways-next-generation-ai-architecture/ml-pathways).
265
+
266
+ JAX allows researchers to take advantage of the latest generation of hardware,
267
+ including TPUs, for faster and more efficient training of large models.
268
+
269
+ ML Pathways is Google's latest effort to build artificially intelligent systems
270
+ capable of generalizing across multiple tasks. This is specially suitable for
271
+ [foundation models](https://ai.google/discover/foundation-models/), including large language models like
272
+ these ones.
273
+
274
+ Together, JAX and ML Pathways are used as described in the
275
+ [paper about the Gemini family of models](https://arxiv.org/abs/2312.11805); "the 'single
276
+ controller' programming model of Jax and Pathways allows a single Python
277
+ process to orchestrate the entire training run, dramatically simplifying the
278
+ development workflow."
279
+
280
+ ## Evaluation
281
+
282
+ Model evaluation metrics and results.
283
+
284
+ ### Benchmark Results
285
+
286
+ These models were evaluated against a large collection of different datasets and
287
+ metrics to cover different aspects of text generation:
288
+
289
+ | Benchmark | Metric | 2B Params | 7B Params |
290
+ | ------------------------------ | ------------- | ----------- | --------- |
291
+ | [MMLU](https://arxiv.org/abs/2009.03300) | 5-shot, top-1 | 42.3 | 64.3 |
292
+ | [HellaSwag](https://arxiv.org/abs/1905.07830) | 0-shot |71.4 | 81.2 |
293
+ | [PIQA](https://arxiv.org/abs/1911.11641) | 0-shot | 77.3 | 81.2 |
294
+ | [SocialIQA](https://arxiv.org/abs/1904.09728) | 0-shot | 59.7 | 51.8 |
295
+ | [BooIQ](https://arxiv.org/abs/1905.10044) | 0-shot | 69.4 | 83.2 |
296
+ | [WinoGrande](https://arxiv.org/abs/1907.10641) | partial score | 65.4 | 72.3 |
297
+ | [CommonsenseQA](https://arxiv.org/abs/1811.00937) | 7-shot | 65.3 | 71.3 |
298
+ | [OpenBookQA](https://arxiv.org/abs/1809.02789) | | 47.8 | 52.8 |
299
+ | [ARC-e](https://arxiv.org/abs/1911.01547) | | 73.2 | 81.5 |
300
+ | [ARC-c](https://arxiv.org/abs/1911.01547) | | 42.1 | 53.2 |
301
+ | [TriviaQA](https://arxiv.org/abs/1705.03551) | 5-shot | 53.2 | 63.4 |
302
+ | [Natural Questions](https://github.com/google-research-datasets/natural-questions) | 5-shot | - | 23 |
303
+ | [HumanEval](https://arxiv.org/abs/2107.03374) | pass@1 | 22.0 | 32.3 |
304
+ | [MBPP](https://arxiv.org/abs/2108.07732) | 3-shot | 29.2 | 44.4 |
305
+ | [GSM8K](https://arxiv.org/abs/2110.14168) | maj@1 | 17.7 | 46.4 |
306
+ | [MATH](https://arxiv.org/abs/2108.07732) | 4-shot | 11.8 | 24.3 |
307
+ | [AGIEval](https://arxiv.org/abs/2304.06364) | | 24.2 | 41.7 |
308
+ | [BIG-Bench](https://arxiv.org/abs/2206.04615) | | 35.2 | 55.1 |
309
+ | ------------------------------ | ------------- | ----------- | --------- |
310
+ | **Average** | | **54.0** | **56.4** |
311
+
312
+ ## Ethics and Safety
313
+
314
+ Ethics and safety evaluation approach and results.
315
+
316
+ ### Evaluation Approach
317
+
318
+ Our evaluation methods include structured evaluations and internal red-teaming
319
+ testing of relevant content policies. Red-teaming was conducted by a number of
320
+ different teams, each with different goals and human evaluation metrics. These
321
+ models were evaluated against a number of different categories relevant to
322
+ ethics and safety, including:
323
+
324
+ * Text-to-Text Content Safety: Human evaluation on prompts covering safety
325
+ policies including child sexual abuse and exploitation, harassment, violence
326
+ and gore, and hate speech.
327
+ * Text-to-Text Representational Harms: Benchmark against relevant academic
328
+ datasets such as [WinoBias](https://arxiv.org/abs/1804.06876) and [BBQ Dataset](https://arxiv.org/abs/2110.08193v2).
329
+ * Memorization: Automated evaluation of memorization of training data, including
330
+ the risk of personally identifiable information exposure.
331
+ * Large-scale harm: Tests for "dangerous capabilities," such as chemical,
332
+ biological, radiological, and nuclear (CBRN) risks.
333
+
334
+ ### Evaluation Results
335
+
336
+ The results of ethics and safety evaluations are within acceptable thresholds
337
+ for meeting [internal policies](https://storage.googleapis.com/gweb-uniblog-publish-prod/documents/2023_Google_AI_Principles_Progress_Update.pdf#page=11) for categories such as child
338
+ safety, content safety, representational harms, memorization, large-scale harms.
339
+ On top of robust internal evaluations, the results of well known safety
340
+ benchmarks like BBQ, BOLD, Winogender, Winobias, RealToxicity, and TruthfulQA
341
+ are shown here.
342
+
343
+ | Benchmark | Metric | 2B Params | 7B Params |
344
+ | ------------------------------ | ------------- | ----------- | --------- |
345
+ | [RealToxicity](https://arxiv.org/abs/2009.11462) | average | 6.86 | 7.90 |
346
+ | [BOLD](https://arxiv.org/abs/2101.11718) | | 45.57 | 49.08 |
347
+ | [CrowS-Pairs](https://aclanthology.org/2020.emnlp-main.154/) | top-1 | 45.82 | 51.33 |
348
+ | [BBQ Ambig](https://arxiv.org/abs/2110.08193v2) | 1-shot, top-1 | 62.58 | 92.54 |
349
+ | [BBQ Disambig](https://arxiv.org/abs/2110.08193v2) | top-1 | 54.62 | 71.99 |
350
+ | [Winogender](https://arxiv.org/abs/1804.09301) | top-1 | 51.25 | 54.17 |
351
+ | [TruthfulQA](https://arxiv.org/abs/2109.07958) | | 44.84 | 31.81 |
352
+ | [Winobias 1_2](https://arxiv.org/abs/1804.06876) | | 56.12 | 59.09 |
353
+ | [Winobias 2_2](https://arxiv.org/abs/1804.06876) | | 91.10 | 92.23 |
354
+ | [Toxigen](https://arxiv.org/abs/2203.09509) | | 29.77 | 39.59 |
355
+ | ------------------------------ | ------------- | ----------- | --------- |
356
+
357
+
358
+ ## Usage and Limitations
359
+
360
+ These models have certain limitations that users should be aware of.
361
+
362
+ ### Intended Usage
363
+
364
+ Open Large Language Models (LLMs) have a wide range of applications across
365
+ various industries and domains. The following list of potential uses is not
366
+ comprehensive. The purpose of this list is to provide contextual information
367
+ about the possible use-cases that the model creators considered as part of model
368
+ training and development.
369
+
370
+ * Content Creation and Communication
371
+ * Text Generation: These models can be used to generate creative text formats
372
+ such as poems, scripts, code, marketing copy, and email drafts.
373
+ * Chatbots and Conversational AI: Power conversational interfaces for customer
374
+ service, virtual assistants, or interactive applications.
375
+ * Text Summarization: Generate concise summaries of a text corpus, research
376
+ papers, or reports.
377
+ * Research and Education
378
+ * Natural Language Processing (NLP) Research: These models can serve as a
379
+ foundation for researchers to experiment with NLP techniques, develop
380
+ algorithms, and contribute to the advancement of the field.
381
+ * Language Learning Tools: Support interactive language learning experiences,
382
+ aiding in grammar correction or providing writing practice.
383
+ * Knowledge Exploration: Assist researchers in exploring large bodies of text
384
+ by generating summaries or answering questions about specific topics.
385
+
386
+ ### Limitations
387
+
388
+ * Training Data
389
+ * The quality and diversity of the training data significantly influence the
390
+ model's capabilities. Biases or gaps in the training data can lead to
391
+ limitations in the model's responses.
392
+ * The scope of the training dataset determines the subject areas the model can
393
+ handle effectively.
394
+ * Context and Task Complexity
395
+ * LLMs are better at tasks that can be framed with clear prompts and
396
+ instructions. Open-ended or highly complex tasks might be challenging.
397
+ * A model's performance can be influenced by the amount of context provided
398
+ (longer context generally leads to better outputs, up to a certain point).
399
+ * Language Ambiguity and Nuance
400
+ * Natural language is inherently complex. LLMs might struggle to grasp subtle
401
+ nuances, sarcasm, or figurative language.
402
+ * Factual Accuracy
403
+ * LLMs generate responses based on information they learned from their
404
+ training datasets, but they are not knowledge bases. They may generate
405
+ incorrect or outdated factual statements.
406
+ * Common Sense
407
+ * LLMs rely on statistical patterns in language. They might lack the ability
408
+ to apply common sense reasoning in certain situations.
409
+
410
+ ### Ethical Considerations and Risks
411
+
412
+ The development of large language models (LLMs) raises several ethical concerns.
413
+ In creating an open model, we have carefully considered the following:
414
+
415
+ * Bias and Fairness
416
+ * LLMs trained on large-scale, real-world text data can reflect socio-cultural
417
+ biases embedded in the training material. These models underwent careful
418
+ scrutiny, input data pre-processing described and posterior evaluations
419
+ reported in this card.
420
+ * Misinformation and Misuse
421
+ * LLMs can be misused to generate text that is false, misleading, or harmful.
422
+ * Guidelines are provided for responsible use with the model, see the
423
+ [Responsible Generative AI Toolkit](http://ai.google.dev/gemma/responsible).
424
+ * Transparency and Accountability:
425
+ * This model card summarizes details on the models' architecture,
426
+ capabilities, limitations, and evaluation processes.
427
+ * A responsibly developed open model offers the opportunity to share
428
+ innovation by making LLM technology accessible to developers and researchers
429
+ across the AI ecosystem.
430
+
431
+ Risks identified and mitigations:
432
+
433
+ * Perpetuation of biases: It's encouraged to perform continuous monitoring
434
+ (using evaluation metrics, human review) and the exploration of de-biasing
435
+ techniques during model training, fine-tuning, and other use cases.
436
+ * Generation of harmful content: Mechanisms and guidelines for content safety
437
+ are essential. Developers are encouraged to exercise caution and implement
438
+ appropriate content safety safeguards based on their specific product policies
439
+ and application use cases.
440
+ * Misuse for malicious purposes: Technical limitations and developer and
441
+ end-user education can help mitigate against malicious applications of LLMs.
442
+ Educational resources and reporting mechanisms for users to flag misuse are
443
+ provided. Prohibited uses of Gemma models are outlined in the
444
+ [Gemma Prohibited Use Policy](https://ai.google.dev/gemma/prohibited_use_policy).
445
+ * Privacy violations: Models were trained on data filtered for removal of PII
446
+ (Personally Identifiable Information). Developers are encouraged to adhere to
447
+ privacy regulations with privacy-preserving techniques.
448
+
449
+ ### Benefits
450
+
451
+ At the time of release, this family of models provides high-performance open
452
+ large language model implementations designed from the ground up for Responsible
453
+ AI development compared to similarly sized models.
454
+
455
+ Using the benchmark evaluation metrics described in this document, these models
456
+ have shown to provide superior performance to other, comparably-sized open model
457
+ alternatives.