You can now download your trained adapters
A completed training job that produced adapter files now has an Adapters section on its page. Download the final adapter or any checkpoint, file by file, and load the LoRA with PEFT, vLLM, or any other LoRA-compatible runtime. The weights you trained are not locked to Arkor.


From there the files are an ordinary LoRA directory:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base = AutoModelForCausalLM.from_pretrained("unsloth/gemma-4-E4B-it")
model = PeftModel.from_pretrained(base, "./adapter")Each download link is signed at the moment you click it and expires an hour later.
