Views
No views yet
bitsandbytes (bnb_4bit).torch.float16"nf4" (Nonlinear quantization).q_proj, v_proj).CAUSAL_LM).paged_adamw_8bit for memory-efficient updates.fp16) for faster training.2e-4train → Model training.validation → General task evaluation.test → Specific task evaluation.AutoTokenizer."max_length".| Generation | Best Fitness | Avg Fitness | Diversity | Best Specialization |
|---|---|---|---|---|
| 1 | 0.4096 | 0.4023 | 0.00097 | 0.9967 |
| 5 | 0.4727 | 0.4722 | 0.00099 | 0.9968 |
| 10 | 0.4772 | 0.4768 | 0.00106 | 0.9972 |
torch.nn.parallel.DistributedDataParallel or Accelerator.psutil and torch.cuda.Code to run locally
1from peft import PeftModel
2from transformers import AutoModelForCausalLM
3
4base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.2-1B")
5model = PeftModel.from_pretrained(base_model, "diabolic6045/ELN-AOC-CAIN")