This is the compact PEFT export from the EvidenceAgent-MM v3 single-RTX-4090
engineering run. It targets evidence search, claim verification, citation-aware
answers, clarification and abstention in a synthetic hard-case agent environment.
The step-50 actor, optimizer, RNG and data checkpoint were saved successfully.
The subsequent post-save FSDP-to-vLLM weight synchronization OOMed by 194 MiB on
the 24 GB GPU. The adapter therefore represents the saved step-50 actor, but the
run did not perform a separate final evaluation after that failure. This is an
engineering validation artifact, not a claim of production accuracy or medical
safety.
See
export_manifest.json and
load_validation.json for machine-readable evidence.
The complete implementation and failure diary are in
EvidenceAgent-MM.
1from peft import PeftModel
2from transformers import AutoModelForCausalLM
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-1.7B")
5model = PeftModel.from_pretrained(
6 base,
7 "jatshi/EvidenceAgent-MM-Qwen3-1.7B-Agentic-GRPO-v3",
8)