Views
No views yet
step-5 (5 optimizer steps)6ac84977b88c7d4e58bf6baa34d9e7ce696c6be532d621f44f0ff0f9348c6ef1techwithsergiu/Qwen3.5-text-9B-bnb-4bit @ 220c703421073067939e7ad5cd733b5a85e07118
(weights SHA-256 bc488058e3c236a104f503d06ac7347741a3e94da6c176efd3e1b4a0324c96a3)https://donto.org/alpha-yi-v67/v1 (OpenAI-compatible)step-5 reached
37/53. It is therefore not promoted, not a locked release, and not a
replacement for the existing alpha-yi model. It is the best candidate of its
generation and a real improvement on its parent, which is a different claim.d912002c9e4e4d05e5a9f1430ca2c9788bc08bc59344913749938e14d035f056),
authored and audited after training so no checkpoint could have seen it. The
eight answers per case were identity-blinded behind opaque tokens, shuffled, and
judged by Claude Sonnet at high effort with no reference answers, no prior
verdicts, and no checkpoint identities.| checkpoint | PASS | BORDERLINE | FAIL | catastrophes | strict pass rate |
|---|---|---|---|---|---|
| step-5 (selected) | 37 | 4 | 12 | 0 | 0.698 |
| step-38 | 34 | 3 | 16 | 0 | 0.642 |
| step-10 | 33 | 6 | 14 | 0 | 0.623 |
| step-60 | 33 | 3 | 17 | 0 | 0.623 |
| parent V66 step-5 | 31 | 5 | 17 | 0 | 0.585 |
| step-1 | 30 | 6 | 17 | 0 | 0.566 |
| step-20 | 30 | 5 | 18 | 0 | 0.566 |
| step-3 | 28 | 4 | 21 | 0 | 0.528 |
step-5 produced 53/53 structural passes: every answer
terminated on EOS, none hit the 512-token block limit, and there were no role
leaks, no control-token artifacts, and no degenerate loops.step-5 parent at a 640-token
sequence cap, peak LR 1e-7 (one third of V66's, to avoid the late-checkpoint
degradation V66 showed). The 240-row curriculum was 150 independently reviewed
corrections covering all 24 of the parent's fresh-holdout non-passes, the exact
20 conversations the parent had physically seen, and 70 broad-retention
conversations, each exposed once. Checkpoints were written at steps 1, 3, 5, 10,
20, 38 and 60, and all seven were screened — the selection is empirical, not a
guess that later is better. It is not: the best checkpoint is the fifth step.1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4BASE = "techwithsergiu/Qwen3.5-text-9B-bnb-4bit"
5REPO = "ajaxdavis/alpha-yi-qwen35-9b-chat-v67-20260817"
6
7tokenizer = AutoTokenizer.from_pretrained(REPO)
8base = AutoModelForCausalLM.from_pretrained(BASE, device_map={"": 0})
9model = PeftModel.from_pretrained(base, REPO).eval()SYSTEM-POLICY.txt is part of the runtime contract. Every evaluation above
prepends it as the system message (merging into any task system prompt rather
than replacing it). Answers without it are not the answers this card describes.1model.generate(
2 input_ids=input_ids, # apply_chat_template(..., add_generation_prompt=True, enable_thinking=False)
3 max_new_tokens=512,
4 do_sample=False,
5 repetition_penalty=1.0,
6 no_repeat_ngram_size=6,
7 use_cache=True,
8)1curl https://donto.org/alpha-yi-v67/v1/chat/completions \
2 -H 'Content-Type: application/json' \
3 -d '{"model":"ajaxdavis/alpha-yi-qwen35-9b-chat-v67-20260817",
4 "messages":[{"role":"user","content":"Plan a simple dinner for four, one vegetarian."}],
5 "max_tokens":256}'/health route reports the live base, adapter and policy hashes. serve/ in
this repository contains the exact server it runs.step-5 adapter, tokenizer and chat template, byte-identical to the trained artifactcheckpoints/ — the six rejected V67 siblings and the V66 parent, so the tournament is reproducibleevidence/ — training decision and result, per-checkpoint screen summaries, tournament manifest, blinding policy, judge schema, and the aggregate review summarySYSTEM-POLICY.txt, RELEASE-MANIFEST.json, CHECKSUMS.sha256