ArkorAlpha
Changelog

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.

www.arkor.ai/oddphin-org/support-bot/jobs/0d7d4ede-566f-4cd4-aeb1-97b7d7f89e04
The Adapters section on a completed job, listing the final adapter and each checkpoint with a download link
The Adapters section on a completed job, listing the final adapter and each checkpoint with a download link
www.arkor.ai/oddphin-org/support-bot/jobs/0d7d4ede-566f-4cd4-aeb1-97b7d7f89e04
The Adapters section on a completed job, listing the final adapter and each checkpoint with a download link
The Adapters section on a completed job, listing the final adapter and each checkpoint with a download link

From there the files are an ordinary LoRA directory:

Load the downloaded adapter
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.