Views
No views yet
Qwen/Qwen2.5-VL-7B-Instruct on the ohjoonhee/visual-cot-50k-poc dataset (Monet-SFT-125K Visual_CoT subset). Trains the model to emit <observation> and other Monet special tokens fluently before Stage 2's alignment objective layers in latent slots. Baseline reference for downstream Stage 2 / Pivot A runs.Qwen/Qwen2.5-VL-7B-Instruct(none)ohjoonhee/visual-cot-50k-poc (Monet-SFT-125K Visual_CoT subset, eval-200 excluded)lr: 1e-05weight_decay: 0.0warmup_steps: 100max_steps: 1100grad_accum_steps: 16max_pixels: 784000<observation>, <abs_vis_token>, etc.) ARE
registered in the tokenizer and embedded so the model learns to produce
them, but the architectural latent-slot mechanism is unused at this stage.step-1100)1from transformers import AutoModelForVision2Seq, AutoProcessor
2m = AutoModelForVision2Seq.from_pretrained(
3 "ohjoonhee/vlatents-qwen25vl7b-stage1-sft-v1", revision="step-1100", torch_dtype="bfloat16")
4p = AutoProcessor.from_pretrained("ohjoonhee/vlatents-qwen25vl7b-stage1-sft-v1", revision="step-1100")