ModelsBenchmarks ReleasesDocumentation
Models  ·  Language

Qwen3

The 1.7B base checkpoint on Apple Silicon. Qwen3 is not Qwen2.5 with a new number on it — the attention block gained QK-Norm and lost the qkv bias — so it needed its own adapter and its own proof that the adapter is right.

EXPERIMENTAL Apple Metal · since 2026-09-20 NVIDIA CUDA · planned
Sizes

What it costs on the device

SizeShort nameCheckpointOn deviceLayersHiddenHeads (Q / KV)Context
Qwen3-1.7B1.7b3,281 MiB923 MiB282,04816 / 832,768

Measured on an Apple M4 Pro, 2026-09-20, with the published core. 0 MiB copied verbatim.

Run it

The command

zsh
$ huggingface-cli download Qwen/Qwen3-1.7B

$ veizik run 1.7b "Explain attention."
  device      : Apple M4 Pro
  model       : qwen3-1.7b  H 2048 layers 28
  checkpoint  : 3281 MiB checkpoint
  weights     : 923 MiB (0 MiB copied verbatim)

Base checkpoint. This release accepts the base model; instruction-tuned variants are not registered yet.

Greedy decoding only, as with every model in this release.

32,768-token context, refused rather than truncated when exceeded.

Verification

How the adapter was proved

A new architecture is where quiet wrongness lives. The check was not "does it produce text" but "does it produce the same numbers as an implementation we already trust".

Architecture support
qwen3 — EXPERIMENTAL. Import, on-device preparation and tokenizer validated.
Reference used
A numpy/torch reference implementation, itself validated against transformers' Qwen3ForCausalLM.
Numeric result
Max absolute logit delta 4.3e-5; argmax identical at every position.
What differs from qwen2
Adds QK-Norm (self_attn.{q,k}_norm.weight, 128) and drops the qkv bias.
Context
Opened to 32,768 on 2026-09-16 and verified by recall.
Quality
Uncalibrated quantisation, as with the rest of this release.
Support history

How this family got here

EXPERIMENTALMetalQwen

Qwen3-1.7B published on Apple Metal

Shipped in the first Metal package alongside the three Qwen2.5 sizes. Engine-wide changes are on the lane page.

registry 2026.09.16Context

Context opened to 32,768 tokens

Verified by recall.

VALIDATEDCorrectness

The qwen3 adapter matched the reference to 4.3e-5

Argmax identical at every position against a reference that had itself been checked against transformers.