Instructions to use Dharmik/llama_7b_mixed_dataset_int8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Dharmik/llama_7b_mixed_dataset_int8 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("openlm-research/open_llama_7b") model = PeftModel.from_pretrained(base_model, "Dharmik/llama_7b_mixed_dataset_int8") - Notebooks
- Google Colab
- Kaggle
Update adapter_config.json
Browse files- adapter_config.json +1 -1
adapter_config.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"base_model_name_or_path":
|
| 3 |
"bias": "none",
|
| 4 |
"fan_in_fan_out": false,
|
| 5 |
"inference_mode": true,
|
|
|
|
| 1 |
{
|
| 2 |
+
"base_model_name_or_path": "openlm-research/open_llama_7b",
|
| 3 |
"bias": "none",
|
| 4 |
"fan_in_fan_out": false,
|
| 5 |
"inference_mode": true,
|