Question Answering
PEFT
TensorBoard
Safetensors
mistral
trl
sft
Generated from Trainer
4-bit precision
bitsandbytes
Instructions to use Ikeofai/learn-python-easy with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Ikeofai/learn-python-easy with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-v0.1") model = PeftModel.from_pretrained(base_model, "Ikeofai/learn-python-easy") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +1 -1
config.json
CHANGED
|
@@ -20,5 +20,5 @@
|
|
| 20 |
"torch_dtype": "bfloat16",
|
| 21 |
"transformers_version": "4.34.0.dev0",
|
| 22 |
"use_cache": true,
|
| 23 |
-
"vocab_size":
|
| 24 |
}
|
|
|
|
| 20 |
"torch_dtype": "bfloat16",
|
| 21 |
"transformers_version": "4.34.0.dev0",
|
| 22 |
"use_cache": true,
|
| 23 |
+
"vocab_size": 32001
|
| 24 |
}
|