add README
Browse files
README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-VL-8B-Instruct
|
| 3 |
+
library_name: transformers
|
| 4 |
+
pipeline_tag: image-text-to-text
|
| 5 |
+
tags:
|
| 6 |
+
- vision-language
|
| 7 |
+
- mvtec
|
| 8 |
+
- lora
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# IRPO — MVTec checkpoints
|
| 12 |
+
|
| 13 |
+
Fine-tuned checkpoints of **Qwen/Qwen3-VL-8B-Instruct** from the IRPO project (inductive-stage
|
| 14 |
+
experiments), trained on the MVTec-AD category set. Research artifacts; **optimizer state stripped**
|
| 15 |
+
(inference/eval weights only).
|
| 16 |
+
|
| 17 |
+
| subfolder | training | type |
|
| 18 |
+
|---|---|---|
|
| 19 |
+
| `sft-mvtec` | supervised fine-tuning (direct answer) | full model |
|
| 20 |
+
| `rft-mvtec` | GRPO / RFT (answer-only), continued run | full model |
|
| 21 |
+
| `ovr-mvtec-lora` | **OVR** (one-vs-rest rule-induction reward), 468 steps | LoRA adapter |
|
| 22 |
+
| `ovr6-mvtec-lora` | **OVR** (one-vs-rest rule-induction reward), 234 steps | LoRA adapter |
|
| 23 |
+
| `sftovr-mvtec-lora` | SFT -> OVR | LoRA adapter |
|
| 24 |
+
|
| 25 |
+
Full models: load with `transformers.AutoModelForImageTextToText`.
|
| 26 |
+
LoRA adapters: load the base model, then apply with `peft.PeftModel.from_pretrained`.
|
| 27 |
+
Base model: `Qwen/Qwen3-VL-8B-Instruct`.
|