File size: 311 Bytes
5d61448 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # test_fork_reset.td — Test fork -> edit -> eval -> reset
load "Qwen/Qwen3-VL-8B-Instruct" as base
# Create a checkpoint/fork
fork base as stable_fork
# Try a risky edit
edit base layers all using lora lr 5e-4
eval base -> risky_eval.json
# Revert base to the stable fork state
reset base to stable_fork
|