Instructions to use siciai/vicunaft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use siciai/vicunaft with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("lmsys/vicuna-7b-v1.3") model = PeftModel.from_pretrained(base_model, "siciai/vicunaft") - Notebooks
- Google Colab
- Kaggle
Update adapter_config.json
Browse files- adapter_config.json +1 -1
adapter_config.json
CHANGED
|
@@ -17,5 +17,5 @@
|
|
| 17 |
"q_proj",
|
| 18 |
"v_proj"
|
| 19 |
],
|
| 20 |
-
"task_type": "CAUSAL_LM"
|
| 21 |
}
|
|
|
|
| 17 |
"q_proj",
|
| 18 |
"v_proj"
|
| 19 |
],
|
| 20 |
+
"task_type": "CAUSAL_LM"
|
| 21 |
}
|