Views
No views yet
| Parameter | Value |
|---|---|
| Fine-Tuning | QLoRA |
| LoRA Rank | 16 |
| Quantization | 4-bit NF4 |
| Framework | Hugging Face Transformers |
| Trainer | TRL SFTTrainer |
| Monitoring | Weights & Biases |
| Metric | Value |
|---|---|
| Final Training Loss | ~0.53 |
| Validation Loss | ~0.535 |
| Mean Token Accuracy | ~82.47% |
| Trainable Parameters | 9,175,040 |
| Total Parameters | 3,221,924,864 |
| Trainable Percentage | 0.2848% |
meta-llama/Llama-3.2-3B-Instruct) and then apply the adapter using the PEFT library.My package hasn't arrived.
I'm sorry to hear that your package hasn't arrived. Could you please provide your order number or tracking number so I can check the shipping status for you?
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4BASE_MODEL = "meta-llama/Llama-3.2-3B-Instruct"
5
6tokenizer = AutoTokenizer.from_pretrained(BASE_MODEL)
7
8base_model = AutoModelForCausalLM.from_pretrained(BASE_MODEL)
9
10model = PeftModel.from_pretrained(
11 base_model,
12 "andref218/llama3.2-customer-support-qlora"
13)