Instructions to use Jeesup/llama32-3B-rte-int8-lora-seed42 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Jeesup/llama32-3B-rte-int8-lora-seed42 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.2-3B") model = PeftModel.from_pretrained(base_model, "Jeesup/llama32-3B-rte-int8-lora-seed42") - Notebooks
- Google Colab
- Kaggle
llama32-3B-rte-int8-lora-seed42
LoRA adapter trained on GLUE RTE on top of a
int8 backbone of meta-llama/Llama-3.2-3B.
Part of a controlled study of whether the backbone bit-width changes what a LoRA adapter learns. For a given (model size, seed) the adapter initialisation is identical across the bf16 / int8 / nf4 arms, and the data order, optimiser, schedule and LoRA hyperparameters are held fixed — so any difference in the learned update is attributable to the backbone.
Result
| metric | validation | test |
|---|---|---|
| accuracy | 0.8755 | 0.8448 |
| macro-F1 | 0.8754 | 0.8440 |
| loss | 0.3158 | 0.4137 |
Test-set majority-class baseline: 0.5271
- peak GPU memory: 6.81 GiB
- training time: 11.3 min (105 steps)
- GPU: NVIDIA GeForce RTX 4090
Setup
- seed:
42· adapter init:shared:lora_init_3B_seed42.pt:224tensors - LoRA: r=16, alpha=32, dropout=0.0, bias=none, target_modules=['q_proj', 'k_proj', 'v_proj', 'o_proj']
- trainable params: 9,175,040
- epochs 3, lr 0.0002, max_len 256, batch 4 x grad_accum 16, cosine schedule, warmup 0.03
Prompt format
Trained as causal LM with the loss on the answer letter only (prompt tokens masked to -100):
Premise: ...
Hypothesis: ...
Does the premise entail the hypothesis?
A. Entailment
B. Not entailment
Answer:
Evaluated by conditional likelihood over the answer letters (Entailment, Not entailment).
GLUE
testis unlabeled, so the officialvalidationsplit is used as TEST and the validation set is carved fromtrain(disjoint).
- Downloads last month
- 2
Model tree for Jeesup/llama32-3B-rte-int8-lora-seed42
Base model
meta-llama/Llama-3.2-3B