Instructions to use CodCodingCode/llama-3.1-8b-GRPO-V2.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CodCodingCode/llama-3.1-8b-GRPO-V2.0 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("CodCodingCode/llama-3.1-8b-GRPO-V2.0", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Create generation_config.json
Browse files- generation_config.json +7 -0
generation_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 128000,
|
| 4 |
+
"do_sample": true,
|
| 5 |
+
"eos_token_id": 128001,
|
| 6 |
+
"transformers_version": "4.53.0"
|
| 7 |
+
}
|