Mungert commited on
Commit
7840165
·
verified ·
1 Parent(s): 3f92147

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +490 -0
README.md ADDED
@@ -0,0 +1,490 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: other
4
+ license_name: nvidia-open-model-license
5
+ license_link: >-
6
+ https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-open-model-license/
7
+
8
+ pipeline_tag: text-generation
9
+ language:
10
+ - en
11
+ tags:
12
+ - nvidia
13
+ - llama-3
14
+ - pytorch
15
+ ---
16
+
17
+ # <span style="color: #7FFF7F;">Llama-3.1-Nemotron-Nano-8B-v1 GGUF Models</span>
18
+
19
+ ## **Choosing the Right Model Format**
20
+
21
+ Selecting the correct model format depends on your **hardware capabilities** and **memory constraints**.
22
+
23
+ ### **BF16 (Brain Float 16) – Use if BF16 acceleration is available**
24
+ - A 16-bit floating-point format designed for **faster computation** while retaining good precision.
25
+ - Provides **similar dynamic range** as FP32 but with **lower memory usage**.
26
+ - Recommended if your hardware supports **BF16 acceleration** (check your device’s specs).
27
+ - Ideal for **high-performance inference** with **reduced memory footprint** compared to FP32.
28
+
29
+ 📌 **Use BF16 if:**
30
+ ✔ Your hardware has native **BF16 support** (e.g., newer GPUs, TPUs).
31
+ ✔ You want **higher precision** while saving memory.
32
+ ✔ You plan to **requantize** the model into another format.
33
+
34
+ 📌 **Avoid BF16 if:**
35
+ ❌ Your hardware does **not** support BF16 (it may fall back to FP32 and run slower).
36
+ ❌ You need compatibility with older devices that lack BF16 optimization.
37
+
38
+ ---
39
+
40
+ ### **F16 (Float 16) – More widely supported than BF16**
41
+ - A 16-bit floating-point **high precision** but with less of range of values than BF16.
42
+ - Works on most devices with **FP16 acceleration support** (including many GPUs and some CPUs).
43
+ - Slightly lower numerical precision than BF16 but generally sufficient for inference.
44
+
45
+ 📌 **Use F16 if:**
46
+ ✔ Your hardware supports **FP16** but **not BF16**.
47
+ ✔ You need a **balance between speed, memory usage, and accuracy**.
48
+ ✔ You are running on a **GPU** or another device optimized for FP16 computations.
49
+
50
+ 📌 **Avoid F16 if:**
51
+ ❌ Your device lacks **native FP16 support** (it may run slower than expected).
52
+ ❌ You have memory limitations.
53
+
54
+ ---
55
+
56
+ ### **Quantized Models (Q4_K, Q6_K, Q8, etc.) – For CPU & Low-VRAM Inference**
57
+ Quantization reduces model size and memory usage while maintaining as much accuracy as possible.
58
+ - **Lower-bit models (Q4_K)** → **Best for minimal memory usage**, may have lower precision.
59
+ - **Higher-bit models (Q6_K, Q8_0)** → **Better accuracy**, requires more memory.
60
+
61
+ 📌 **Use Quantized Models if:**
62
+ ✔ You are running inference on a **CPU** and need an optimized model.
63
+ ✔ Your device has **low VRAM** and cannot load full-precision models.
64
+ ✔ You want to reduce **memory footprint** while keeping reasonable accuracy.
65
+
66
+ 📌 **Avoid Quantized Models if:**
67
+ ❌ You need **maximum accuracy** (full-precision models are better for this).
68
+ ❌ Your hardware has enough VRAM for higher-precision formats (BF16/F16).
69
+
70
+ ---
71
+
72
+ ### **Very Low-Bit Quantization (IQ3_XS, IQ3_S, IQ3_M, Q4_K, Q4_0)**
73
+ These models are optimized for **extreme memory efficiency**, making them ideal for **low-power devices** or **large-scale deployments** where memory is a critical constraint.
74
+
75
+ - **IQ3_XS**: Ultra-low-bit quantization (3-bit) with **extreme memory efficiency**.
76
+ - **Use case**: Best for **ultra-low-memory devices** where even Q4_K is too large.
77
+ - **Trade-off**: Lower accuracy compared to higher-bit quantizations.
78
+
79
+ - **IQ3_S**: Small block size for **maximum memory efficiency**.
80
+ - **Use case**: Best for **low-memory devices** where **IQ3_XS** is too aggressive.
81
+
82
+ - **IQ3_M**: Medium block size for better accuracy than **IQ3_S**.
83
+ - **Use case**: Suitable for **low-memory devices** where **IQ3_S** is too limiting.
84
+
85
+ - **Q4_K**: 4-bit quantization with **block-wise optimization** for better accuracy.
86
+ - **Use case**: Best for **low-memory devices** where **Q6_K** is too large.
87
+
88
+ - **Q4_0**: Pure 4-bit quantization, optimized for **ARM devices**.
89
+ - **Use case**: Best for **ARM-based devices** or **low-memory environments**.
90
+
91
+ ---
92
+
93
+ ### **Summary Table: Model Format Selection**
94
+
95
+ | Model Format | Precision | Memory Usage | Device Requirements | Best Use Case |
96
+ |--------------|------------|---------------|----------------------|---------------|
97
+ | **BF16** | Highest | High | BF16-supported GPU/CPUs | High-speed inference with reduced memory |
98
+ | **F16** | High | High | FP16-supported devices | GPU inference when BF16 isn’t available |
99
+ | **Q4_K** | Medium Low | Low | CPU or Low-VRAM devices | Best for memory-constrained environments |
100
+ | **Q6_K** | Medium | Moderate | CPU with more memory | Better accuracy while still being quantized |
101
+ | **Q8_0** | High | Moderate | CPU or GPU with enough VRAM | Best accuracy among quantized models |
102
+ | **IQ3_XS** | Very Low | Very Low | Ultra-low-memory devices | Extreme memory efficiency and low accuracy |
103
+ | **Q4_0** | Low | Low | ARM or low-memory devices | llama.cpp can optimize for ARM devices |
104
+
105
+ ---
106
+
107
+ ## **Included Files & Details**
108
+
109
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-bf16.gguf`
110
+ - Model weights preserved in **BF16**.
111
+ - Use this if you want to **requantize** the model into a different format.
112
+ - Best if your device supports **BF16 acceleration**.
113
+
114
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-f16.gguf`
115
+ - Model weights stored in **F16**.
116
+ - Use if your device supports **FP16**, especially if BF16 is not available.
117
+
118
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-bf16-q8_0.gguf`
119
+ - **Output & embeddings** remain in **BF16**.
120
+ - All other layers quantized to **Q8_0**.
121
+ - Use if your device supports **BF16** and you want a quantized version.
122
+
123
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-f16-q8_0.gguf`
124
+ - **Output & embeddings** remain in **F16**.
125
+ - All other layers quantized to **Q8_0**.
126
+
127
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-q4_k.gguf`
128
+ - **Output & embeddings** quantized to **Q8_0**.
129
+ - All other layers quantized to **Q4_K**.
130
+ - Good for **CPU inference** with limited memory.
131
+
132
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-q4_k_s.gguf`
133
+ - Smallest **Q4_K** variant, using less memory at the cost of accuracy.
134
+ - Best for **very low-memory setups**.
135
+
136
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-q6_k.gguf`
137
+ - **Output & embeddings** quantized to **Q8_0**.
138
+ - All other layers quantized to **Q6_K** .
139
+
140
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-q8_0.gguf`
141
+ - Fully **Q8** quantized model for better accuracy.
142
+ - Requires **more memory** but offers higher precision.
143
+
144
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-iq3_xs.gguf`
145
+ - **IQ3_XS** quantization, optimized for **extreme memory efficiency**.
146
+ - Best for **ultra-low-memory devices**.
147
+
148
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-iq3_m.gguf`
149
+ - **IQ3_M** quantization, offering a **medium block size** for better accuracy.
150
+ - Suitable for **low-memory devices**.
151
+
152
+ ### `Llama-3.1-Nemotron-Nano-8B-v1-q4_0.gguf`
153
+ - Pure **Q4_0** quantization, optimized for **ARM devices**.
154
+ - Best for **low-memory environments**.
155
+ - Prefer IQ4_NL for better accuracy.
156
+
157
+ # <span id="testllm" style="color: #7F7FFF;">🚀 If you find these models useful</span>
158
+
159
+ Please click like ❤ . Also I’d really appreciate it if you could test my Network Monitor Assistant at 👉 [Network Monitor Assitant](https://freenetworkmonitor.click/dashboard).
160
+
161
+ 💬 Click the **chat icon** (bottom right of the main and dashboard pages) . Choose a LLM; toggle between the LLM Types TurboLLM -> FreeLLM -> TestLLM.
162
+
163
+ ### What I'm Testing
164
+
165
+ I'm experimenting with **function calling** against my network monitoring service. Using small open source models. I am into the question "How small can it go and still function".
166
+
167
+ 🟡 **TestLLM** – Runs the current testing model using llama.cpp on 6 threads of a Cpu VM (Should take about 15s to load. Inference speed is quite slow and it only processes one user prompt at a time—still working on scaling!). If you're curious, I'd be happy to share how it works! .
168
+
169
+ ### The other Available AI Assistants
170
+
171
+ 🟢 **TurboLLM** – Uses **gpt-4o-mini** Fast! . Note: tokens are limited since OpenAI models are pricey, but you can [Login](https://freenetworkmonitor.click) or [Download](https://freenetworkmonitor.click/download) the Free Network Monitor agent to get more tokens, Alternatively use the FreeLLM .
172
+
173
+ 🔵 **FreeLLM** – Runs **open-source Hugging Face models** Medium speed (unlimited, subject to Hugging Face API availability).
174
+
175
+
176
+
177
+
178
+ # Llama-3.1-Nemotron-Nano-8B-v1
179
+
180
+
181
+ ## Model Overview
182
+
183
+ Llama-3.1-Nemotron-Nano-8B-v1 is a large language model (LLM) which is a derivative of [Meta Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct) (AKA the reference model). It is a reasoning model that is post trained for reasoning, human chat preferences, and tasks, such as RAG and tool calling.
184
+
185
+ Llama-3.1-Nemotron-Nano-8B-v1 is a model which offers a great tradeoff between model accuracy and efficiency. It is created from Llama 3.1 8B Instruct and offers improvements in model accuracy. The model fits on a single RTX GPU and can be used locally. The model supports a context length of 128K.
186
+
187
+ This model underwent a multi-phase post-training process to enhance both its reasoning and non-reasoning capabilities. This includes a supervised fine-tuning stage for Math, Code, Reasoning, and Tool Calling as well as multiple reinforcement learning (RL) stages using REINFORCE (RLOO) and Online Reward-aware Preference Optimization (RPO) algorithms for both chat and instruction-following. The final model checkpoint is obtained after merging the final SFT and Online RPO checkpoints. Improved using Qwen.
188
+
189
+ This model is part of the Llama Nemotron Collection. You can find the other model(s) in this family here:
190
+ [Llama-3.3-Nemotron-Super-49B-v1](https://huggingface.co/nvidia/Llama-3.3-Nemotron-Super-49B-v1)
191
+
192
+ This model is ready for commercial use.
193
+
194
+ ## License/Terms of Use
195
+
196
+ GOVERNING TERMS: Your use of this model is governed by the [NVIDIA Open Model License](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-open-model-license/). Additional Information: [Llama 3.1 Community License Agreement](https://www.llama.com/llama3_1/license/). Built with Llama.
197
+
198
+ **Model Developer:** NVIDIA
199
+
200
+ **Model Dates:** Trained between August 2024 and March 2025
201
+
202
+ **Data Freshness:** The pretraining data has a cutoff of 2023 per Meta Llama 3.1 8B
203
+
204
+
205
+ ## Use Case:
206
+
207
+ Developers designing AI Agent systems, chatbots, RAG systems, and other AI-powered applications. Also suitable for typical instruction-following tasks. Balance of model accuracy and compute efficiency (the model fits on a single RTX GPU and can be used locally).
208
+
209
+ ## Release Date: <br>
210
+ 3/18/2025 <br>
211
+
212
+ ## References
213
+
214
+ - [\[2502.00203\] Reward-aware Preference Optimization: A Unified Mathematical Framework for Model Alignment](https://arxiv.org/abs/2502.00203)
215
+
216
+
217
+ ## Model Architecture
218
+
219
+ **Architecture Type:** Dense decoder-only Transformer model
220
+
221
+ **Network Architecture:** Llama 3.1 8B Instruct
222
+
223
+ ## Intended use
224
+
225
+ Llama-3.1-Nemotron-Nano-8B-v1 is a general purpose reasoning and chat model intended to be used in English and coding languages. Other non-English languages (German, French, Italian, Portuguese, Hindi, Spanish, and Thai) are also supported.
226
+
227
+ # Input:
228
+ - **Input Type:** Text
229
+ - **Input Format:** String
230
+ - **Input Parameters:** One-Dimensional (1D)
231
+ - **Other Properties Related to Input:** Context length up to 131,072 tokens
232
+
233
+ ## Output:
234
+ - **Output Type:** Text
235
+ - **Output Format:** String
236
+ - **Output Parameters:** One-Dimensional (1D)
237
+ - **Other Properties Related to Output:** Context length up to 131,072 tokens
238
+
239
+ ## Model Version:
240
+ 1.0 (3/18/2025)
241
+
242
+ ## Software Integration
243
+ - **Runtime Engine:** NeMo 24.12 <br>
244
+ - **Recommended Hardware Microarchitecture Compatibility:**
245
+ - NVIDIA Hopper
246
+ - NVIDIA Ampere
247
+
248
+ ## Quick Start and Usage Recommendations:
249
+
250
+ 1. Reasoning mode (ON/OFF) is controlled via the system prompt, which must be set as shown in the example below. All instructions should be contained within the user prompt
251
+ 2. We recommend setting temperature to `0.6`, and Top P to `0.95` for Reasoning ON mode
252
+ 3. We recommend using greedy decoding for Reasoning OFF mode
253
+ 4. We have provided a list of prompts to use for evaluation for each benchmark where a specific template is required
254
+
255
+ You can try this model out through the preview API, using this link: [Llama-3.1-Nemotron-Nano-8B-v1](https://build.nvidia.com/nvidia/llama-3_1-nemotron-nano-8b-v1).
256
+
257
+ See the snippet below for usage with Hugging Face Transformers library. Reasoning mode (ON/OFF) is controlled via system prompt. Please see the example below.
258
+ Our code requires the transformers package version to be `4.44.2` or higher.
259
+
260
+
261
+ ### Example of “Reasoning On:”
262
+
263
+ ```python
264
+ import torch
265
+ import transformers
266
+
267
+ model_id = "nvidia/Llama-3.1-Nemotron-Nano-8B-v1"
268
+ model_kwargs = {"torch_dtype": torch.bfloat16, "device_map": "auto"}
269
+ tokenizer = transformers.AutoTokenizer.from_pretrained(model_id)
270
+ tokenizer.pad_token_id = tokenizer.eos_token_id
271
+
272
+ pipeline = transformers.pipeline(
273
+ "text-generation",
274
+ model=model_id,
275
+ tokenizer=tokenizer,
276
+ max_new_tokens=32768,
277
+ temperature=0.6,
278
+ top_p=0.95,
279
+ **model_kwargs
280
+ )
281
+
282
+ # Thinking can be "on" or "off"
283
+ thinking = "on"
284
+
285
+ print(pipeline([{"role": "system", "content": f"detailed thinking {thinking}"}, {"role": "user", "content": "Solve x*(sin(x)+2)=0"}]))
286
+ ```
287
+
288
+
289
+ ### Example of “Reasoning Off:”
290
+
291
+ ```python
292
+ import torch
293
+ import transformers
294
+
295
+ model_id = "nvidia/Llama-3.1-Nemotron-Nano-8B-v1"
296
+ model_kwargs = {"torch_dtype": torch.bfloat16, "device_map": "auto"}
297
+ tokenizer = transformers.AutoTokenizer.from_pretrained(model_id)
298
+ tokenizer.pad_token_id = tokenizer.eos_token_id
299
+
300
+ pipeline = transformers.pipeline(
301
+ "text-generation",
302
+ model=model_id,
303
+ tokenizer=tokenizer,
304
+ max_new_tokens=32768,
305
+ do_sample=False,
306
+ **model_kwargs
307
+ )
308
+
309
+ # Thinking can be "on" or "off"
310
+ thinking = "off"
311
+
312
+ print(pipeline([{"role": "system", "content": f"detailed thinking {thinking}"}, {"role": "user", "content": "Solve x*(sin(x)+2)=0"}]))
313
+ ```
314
+
315
+ For some prompts, even though thinking is disabled, the model emergently prefers to think before responding. But if desired, the users can prevent it by pre-filling the assistant response.
316
+
317
+ ```python
318
+ import torch
319
+ import transformers
320
+
321
+ model_id = "nvidia/Llama-3.1-Nemotron-Nano-8B-v1"
322
+ model_kwargs = {"torch_dtype": torch.bfloat16, "device_map": "auto"}
323
+ tokenizer = transformers.AutoTokenizer.from_pretrained(model_id)
324
+ tokenizer.pad_token_id = tokenizer.eos_token_id
325
+
326
+ # Thinking can be "on" or "off"
327
+ thinking = "off"
328
+
329
+ pipeline = transformers.pipeline(
330
+ "text-generation",
331
+ model=model_id,
332
+ tokenizer=tokenizer,
333
+ max_new_tokens=32768,
334
+ do_sample=False,
335
+ **model_kwargs
336
+ )
337
+
338
+ print(pipeline([{"role": "system", "content": f"detailed thinking {thinking}"}, {"role": "user", "content": "Solve x*(sin(x)+2)=0"}, {"role":"assistant", "content":"<think>\n</think>"}]))
339
+ ```
340
+
341
+ ## Inference:
342
+ **Engine:** Transformers
343
+ **Test Hardware:**
344
+
345
+ - BF16:
346
+ - 1x RTX 50 Series GPUs
347
+ - 1x RTX 40 Series GPUs
348
+ - 1x RTX 30 Series GPUs
349
+ - 1x H100-80GB GPU
350
+ - 1x A100-80GB GPU
351
+
352
+
353
+ **Preferred/Supported] Operating System(s):** Linux <br>
354
+
355
+ ## Training Datasets
356
+
357
+ A large variety of training data was used for the post-training pipeline, including manually annotated data and synthetic data.
358
+
359
+ The data for the multi-stage post-training phases for improvements in Code, Math, and Reasoning is a compilation of SFT and RL data that supports improvements of math, code, general reasoning, and instruction following capabilities of the original Llama instruct model.
360
+
361
+ Prompts have been sourced from either public and open corpus or synthetically generated. Responses were synthetically generated by a variety of models, with some prompts containing responses for both Reasoning On and Off modes, to train the model to distinguish between two modes.
362
+
363
+ **Data Collection for Training Datasets:** <br>
364
+ * Hybrid: Automated, Human, Synthetic <br>
365
+
366
+ **Data Labeling for Training Datasets:** <br>
367
+ * N/A <br>
368
+
369
+ ## Evaluation Datasets
370
+
371
+ We used the datasets listed below to evaluate Llama-3.1-Nemotron-Nano-8B-v1.
372
+
373
+ **Data Collection for Evaluation Datasets:** Hybrid: Human/Synthetic
374
+
375
+ **Data Labeling for Evaluation Datasets:** Hybrid: Human/Synthetic/Automatic
376
+
377
+ ## Evaluation Results
378
+
379
+ These results contain both “Reasoning On”, and “Reasoning Off”. We recommend using temperature=`0.6`, top_p=`0.95` for “Reasoning On” mode, and greedy decoding for “Reasoning Off” mode. All evaluations are done with 32k sequence length. We run the benchmarks up to 16 times and average the scores to be more accurate.
380
+
381
+ > NOTE: Where applicable, a Prompt Template will be provided. While completing benchmarks, please ensure that you are parsing for the correct output format as per the provided prompt in order to reproduce the benchmarks seen below.
382
+
383
+ ### MT-Bench
384
+
385
+ | Reasoning Mode | Score |
386
+ |--------------|------------|
387
+ | Reasoning Off | 7.9 |
388
+ | Reasoning On | 8.1 |
389
+
390
+
391
+ ### MATH500
392
+
393
+ | Reasoning Mode | pass@1 |
394
+ |--------------|------------|
395
+ | Reasoning Off | 36.6% |
396
+ | Reasoning On | 95.4% |
397
+
398
+ User Prompt Template:
399
+
400
+ ```
401
+ "Below is a math question. I want you to reason through the steps and then give a final answer. Your final answer should be in \boxed{}.\nQuestion: {question}"
402
+ ```
403
+
404
+
405
+ ### AIME25
406
+
407
+ | Reasoning Mode | pass@1 |
408
+ |--------------|------------|
409
+ | Reasoning Off | 0% |
410
+ | Reasoning On | 47.1% |
411
+
412
+ User Prompt Template:
413
+
414
+ ```
415
+ "Below is a math question. I want you to reason through the steps and then give a final answer. Your final answer should be in \boxed{}.\nQuestion: {question}"
416
+ ```
417
+
418
+
419
+ ### GPQA-D
420
+
421
+ | Reasoning Mode | pass@1 |
422
+ |--------------|------------|
423
+ | Reasoning Off | 39.4% |
424
+ | Reasoning On | 54.1% |
425
+
426
+ User Prompt Template:
427
+
428
+
429
+ ```
430
+ "What is the correct answer to this question: {question}\nChoices:\nA. {option_A}\nB. {option_B}\nC. {option_C}\nD. {option_D}\nLet's think step by step, and put the final answer (should be a single letter A, B, C, or D) into a \boxed{}"
431
+ ```
432
+
433
+
434
+ ### IFEval Average
435
+
436
+ | Reasoning Mode | Strict:Prompt | Strict:Instruction |
437
+ |--------------|------------|------------|
438
+ | Reasoning Off | 74.7% | 82.1% |
439
+ | Reasoning On | 71.9% | 79.3% |
440
+
441
+ ### BFCL v2 Live
442
+
443
+ | Reasoning Mode | Score |
444
+ |--------------|------------|
445
+ | Reasoning Off | 63.9% |
446
+ | Reasoning On | 63.6% |
447
+
448
+ User Prompt Template:
449
+
450
+
451
+ ```
452
+ <AVAILABLE_TOOLS>{functions}</AVAILABLE_TOOLS>
453
+
454
+ {user_prompt}
455
+ ```
456
+
457
+
458
+ ### MBPP 0-shot
459
+
460
+ | Reasoning Mode | pass@1 |
461
+ |--------------|------------|
462
+ | Reasoning Off | 66.1% |
463
+ | Reasoning On | 84.6% |
464
+
465
+ User Prompt Template:
466
+
467
+
468
+ ````
469
+ You are an exceptionally intelligent coding assistant that consistently delivers accurate and reliable responses to user instructions.
470
+
471
+ @@ Instruction
472
+ Here is the given problem and test examples:
473
+ {prompt}
474
+ Please use the python programming language to solve this problem.
475
+ Please make sure that your code includes the functions from the test samples and that the input and output formats of these functions match the test samples.
476
+ Please return all completed codes in one code block.
477
+ This code block should be in the following format:
478
+ ```python
479
+ # Your codes here
480
+ ```
481
+ ````
482
+
483
+
484
+ ## Ethical Considerations:
485
+
486
+ NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
487
+
488
+ For more detailed information on ethical considerations for this model, please see the Model Card++ [Explainability](explainability.md), [Bias](bias.md), [Safety & Security](safety.md), and [Privacy](privacy.md) Subcards.
489
+
490
+ Please report security vulnerabilities or NVIDIA AI Concerns [here](https://www.nvidia.com/en-us/support/submit-security-vulnerability/).