Instructions to use datastreams/ds-alpha-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use datastreams/ds-alpha-model with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("sminpark/ds-alpha-draft-model") model = PeftModel.from_pretrained(base_model, "datastreams/ds-alpha-model") - Notebooks
- Google Colab
- Kaggle
Commit ·
1ba83d6
1
Parent(s): aab17ae
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,6 +3,7 @@ library_name: peft
|
|
| 3 |
---
|
| 4 |
## Training procedure
|
| 5 |
|
|
|
|
| 6 |
|
| 7 |
The following `bitsandbytes` quantization config was used during training:
|
| 8 |
- quant_method: bitsandbytes
|
|
|
|
| 3 |
---
|
| 4 |
## Training procedure
|
| 5 |
|
| 6 |
+
LoRA 학습
|
| 7 |
|
| 8 |
The following `bitsandbytes` quantization config was used during training:
|
| 9 |
- quant_method: bitsandbytes
|