A fine-tuned Qwen3-VL-4B-Instruct that extracts structured rows
(name, value, date, unit) from images of financial-statement tables
(Russian + English).
This is the exp232 checkpoint — the project's current gold.
Shipped as a PEFT (DoRA) adapter (~194 MB) instead of a merged model;
see the Why an adapter? section below for the +0.13 t_f1
this design choice unlocks.
Benchmarks
Evaluated on a held-out test split of real financial-statement table crops,
with the quality preset (num_beams=4, repetition_penalty=1.1, length_penalty=1.0, min_new_tokens=200, max_new_tokens=4096):
Seed variance is ~11× tighter than the previous merged-save recipe — saving
the adapter unmerged also stabilizes seed-to-seed jitter.
Why an adapter?
The earlier recipe (exp93, also DoRA + MLP, same data, same hyperparameters)
was saved as a merged model and scored 0.5316. exp232 is the same recipe
except save_adapter_only=true, and scores 0.6637 — a +0.132 lift
from a single config flag.
Root cause: DoRA's merge_and_unload followed by save-to-bf16 silently
degrades the directional component of the DoRA decomposition. Loading the
unmerged adapter and merging in memory at inference time recovers the full
precision. Confirmed across multiple seeds. Discussed in the
structured-extractor-train project notes (2026-05-26).
This is also why this repo is library_name: peft — the file layout is the
standard PEFT one (adapter_config.json + adapter_model.safetensors)
plus an extra_trained_weights.pt for non-LoRA trained pieces (new-token
embed/lm_head rows + frozen vision merger snapshot).
⚠️ Earlier versions of this project reported t_f1 ~0.82 — those numbers
were inflated by a target-leakage bug in the eval pipeline (the answer was
in the model's input). The numbers above are real zero-shot, measured with
a leak-free eval (PageDataset(..., eval_mode=True)).
The first call downloads the base model (Qwen/Qwen3-VL-4B-Instruct, ~8 GB) and the
adapter (this repo, ~194 MB). The loader then:
Loads the base in bf16 (or fp16 on older GPUs).
Resizes token embeddings to fit the fine-tuned tokenizer (4 added sep tokens).
Applies the DoRA adapter via PEFT and merges it.
Restores new-token embed/lm_head rows + visual-merger snapshot from
extra_trained_weights.pt.
All four steps are handled inside StructuredExtractor.from_pretrained.
Required inputs
Input
Status
Notes
Table image
Required
Pre-cropped to a single table region; long-side resized to 1344px (handled internally)
Markdown OCR of that table
Required for benchmark quality
The per-sample disambiguator. Without it the model picks an arbitrary table and tuple-F1 collapses to near zero. The VLM essentially copies cell text from markdown — image alone is insufficient.
date_columns hint
Optional
List of date-column headers; helps when markdown is noisy
The table image must be cropped to the target table, not a full page.
Training used single-table crops; full-page inputs at inference time are untested.
preset="quality" = num_beams=4, length_penalty=1.0, min_new_tokens=200, repetition_penalty=1.1, max_new_tokens=4096, do_sample=False. This is the
configuration that yields STRICT 0.6637.
Greedy decoding (num_beams=1). About 3-4× faster than quality with a
~0.04 t_f1 drop (STRICT 0.6203). Use this when latency or throughput matters.
Batch inference
python
1from pathlib import Path
2from inference import StructuredExtractor
34extractor = StructuredExtractor.from_pretrained(5"Glazkov/structured-extractor-qwen3vl-4b-exp232"6)78paths =sorted(Path("tables/").glob("*.png"))9markdowns =[Path(p.with_suffix(".md")).read_text()for p in paths]10results = extractor.extract_batch(11 paths,12 markdown_batch=markdowns,13 preset="fast",14 batch_size=1,# beam search is memory-hungry; keep at 115)
See examples/batch.py for a CLI version. batch_size>1 is unsupported in
this wrapper because beam-search batching requires the training-time
collator (left-padding + cat of vision tensors), out of scope for the
inference module.
Lenient scoring helper
score_lenient.py re-scores a JSONL of (image, parameters) predictions
against a reference annotations JSONL using unit aliases (million ↔ millions,
млн руб. ↔ млн руб) and date-year normalization. A pure metric helper —
the model output itself is identical; the lift comes from accepting
orthographic equivalents.
The model emits one parameter per line in pipe-separated sep_labels format:
<|sep_meta|>
name: Interest income|value: 533|date: 2024|unit: millions
name: Foreign-currency transaction loss|value: 89|date: 2023|unit: millions
parser.py converts that to {"parameters": [{...}, ...]} and strips
stray <|...|> control-token artifacts before splitting. The model
occasionally emits one mid-row; without this strip a leading < contaminates
the previous field. The fix is worth +0.024-0.042 t_f1 on its own.
bf16 on CUDA capability ≥ 8.0, fp16 elsewhere. CPU works but is unusably
slow for a 4B VLM with beam search.
Limitations
Trained on financial-statement tables (RU/EN). Behavior on other domains
is unmeasured.
Bimodal errors: ~42% of test samples solve well (t_f1 ≥ 0.7), ~34%
fail completely (t_f1 < 0.1). Average F1 obscures this. Worst failures
cluster in specific source documents with dense multi-table pages where
even the markdown disambiguator isn't enough.
Markdown OCR is a hard requirement. The model cannot reliably OCR table
cells from the image alone — it leans heavily on the markdown for cell
text. Production pipelines need an upstream OCR step.