Views
No views yet
{"prompt": "Row context: '<left>[?]<right>'\n\nCandidates for [?]:\nA) <c0>\nB) <c1>\nC) <c2>\n\nAnswer:", ...} and the model
returns one capital letter naming the most plausible reading.| Tag | Description |
|---|---|
adapter_v1 | Original adapter trained on synthetic distractors (Latin mojibake / punct-drop / near-miss). |
main (= v2) | Augmented training set adds 5,000 script-confusion hard negatives (e.g. Latin Od. vs Greek-omicron Οd.). Fixes the v1 regression of preferring Greek glyphs in Latin citation tokens. |
huggingface-cli download ciscoriordan/lsjpre-qwen3-8b-tiebreak --revision adapter_v1 --local-dir <dir>.Qwen/Qwen3-8B, 4-bit NF4 via bitsandbytesq/k/v/o_proj, gate/up/down_proj)| Adapter | Original val_acc (500-row cap) | Script-confusion val_acc (500 rows) |
|---|---|---|
| v1 | 0.9420 | 0.2360 |
| v2 | 0.9580 | 1.0000 |
script_confusion_eval.json.
Each row is a 3-way MCQ where the correct answer is a Latin-script
citation token (e.g. Od., Hdt., Th.6.59) and one distractor is
the same token with all uppercase Latin letters folded to their Greek
visually-identical lookalikes (Οd., Ηdt., Τh.6.59). The third
distractor is a longest-common-substring near-miss from the corpus.LSJPRE_QWEN_TIEBREAK=1 master enable.LSJPRE_QWEN_TIEBREAK_MARGIN near-tie margin threshold (default 1.0
= strict-tie only; recommended near-tie value is 1.2). Higher values
consult Qwen on more rows; the v2 adapter is calibrated for this
near-tie expansion.MARGIN > 1.0:scripts/qwen_tiebreak.py in the lsjpre repo for the full client
implementation.