Fine-tuned encoders match or beat frontier LLMs on structured, convention-bound extraction, at a fraction of the latency and cost, with zero data egress. Identifiers are validated by checksum (IBAN mod-97, card Luhn, ISIN/LEI, container ISO-6346, VIN, national IDs), a correctness guarantee general LLMs lack. See the FlowX OpenNER benchmark for measured results.
1from transformers import AutoTokenizer, AutoModelForTokenClassification
2tok = AutoTokenizer.from_pretrained("flowxai/cvner")
3model = AutoModelForTokenClassification.from_pretrained("flowxai/cvner")
Licensed under the
Apache License 2.0. Copyright 2026
FlowX.AI (
https://flowx.ai). See the
NOTICE file. Trained on synthetic, checksum-validated data.