中微子-1 8B
Neutrino-1 8B

原始链接: https://www.fermionresearch.com/models/neutrino-8b/

Fermion Research 发布了 **Neutrino-1 8B**,这是一款 81.9 亿参数的纯解码器(decoder-only)Transformer 模型。它通过专有的三进制权重格式实现了高性能推理。该模型以比 fp16 小八倍的容器存储权重,其 3.88 GB 的体积使其能够与 KV 缓存一同在包括 8 GB 显存的 GPU 和 MacBook 在内的标准硬件上运行,且无需额外转换。 主要特性包括: * **高效性:** 模型利用分组查询注意力(grouped-query attention)和位压缩权重来最小化内存带宽瓶颈,从而实现快速的单流解码。 * **高性能:** 该模型在 MMLU 测试中达到 72.1 分,并支持通过配套的 0.6B 参数模型进行推测解码,在 H100 上最高可达 763 token/秒,在 Apple M5 上约为 34 token/秒。 * **通用性:** 单个容器文件可通过原生二进制文件、MLX 实现或兼容 GGUF 的 `llama.cpp` 分支,在多种平台(Linux、macOS、NVIDIA CUDA)上运行。 * **易用性:** Neutrino-1 8B 基于 Apache-2.0 协议发布,完全开放用于商业用途、修改和重新分发。 用户可以通过简单的 `pip install` 命令上手,该命令提供了一个统一的引擎和模型文件,可用于即时的本地部署或兼容 OpenAI 的服务器托管。

Fermion Research 发布了名为“Neutrino-1 8B”的压缩三进制(1.58-bit)模型,此举在 Hacker News 上引发了广泛质疑。用户批评该项目文档由人工智能生成,内容“逻辑混乱”,且团队背景与方法论缺乏透明度。 尽管三进制量化(即通过训练或转换,使模型权重仅包含 -1、0 和 +1)是实现在消费级硬件上运行高效大语言模型的重要研究方向,但评论者指出,该领域正充斥着大量低质量的发布。一些用户怀疑 Fermion 的模型相较于 PrismML 的“Ternary Bonsai”或 Hugging Face 上现有的成熟方案,是否具备实质性的进步。 该项目的创始人以独立开发者的身份回应,承认网站上的“AI 垃圾”文案质量低劣,并承诺改进文档。然而,此次讨论反映出开发者社区对当前 AI 领域的一种普遍疲态:即越来越多的项目缺乏明确的基准测试或开源严谨性,且项目背景不透明。讨论还涉及了更广泛的挑战,即人们难以应对当前 AI 模型层出不穷的发布速度,以及业界日益倾向于追求如同商品般的效率,而非原创研究的趋势。
相关文章

原文
Neutrino-1 8B · Fermion Research

Neutrino-1 8B is an 8.19B-parameter decoder-only transformer that ships as one 3.88 GB file. Every one of its 252 transformer linears is stored in a proprietary ternary-family weight format eight times smaller than fp16; the weights stay bit-packed at rest and are decoded inside the matrix kernels, so nothing in the decode path is stored as fp16 or fp32 weight material.

Small weights change the serving economics. Single-stream decode is bound by how many bytes move per token, so a 3.88 GB working set decodes at rates a 16 GB fp16 artifact cannot reach on the same memory system, and the whole model fits beside its KV cache on an 8 GB GPU or a 16 GB laptop. The same container serves every platform below without conversion.

A dense decoder-only transformer. Grouped-query attention holds the KV cache at a quarter of the query width, 144 KiB per token at fp16, so a 4k-token session costs 0.60 GB of cache beside the 3.88 GB of weights.

Base modelApache-2.0, Alibaba Cloud
Qwen3-8B

Parameters6.95B coded projection weights, 1.24B int8 embedding, 0.3M norm
8,190,735,360

Decoder layers
36

Hidden width
4,096

Feed-forward widthgated (SwiGLU), three linears per layer
12,288

Attentiongrouped-query 4:1, head width 128
32 query heads, 8 key-value heads

KV cachefp16; 0.60 GB at 4k context, 4.83 GB at 32k
144 KiB per token

Position encodingapplied across the full 128-wide head
rotary, base 1,000,000

Normalizationplus per-head query/key RMSNorm inside attention
RMSNorm, eps 1e-6

Context length
40,960 tokens

Vocabulary
151,936

Embeddingsinput embedding and output head are separate tensors
untied

Geometry as read from the shipped container's header.

Where the bytes live

Only the transformer linears carry the coded format. The two embedding tensors stay int8 because their rows are read one token at a time, not multiplied against the full activation stream, and the normalization weights are too small to be worth coding. A third of the file is vocabulary.

252 transformer linearsthe coded ternary-family lane, 67.2% of the file: query, key, value, and output projections plus the gate, up, and down feed-forward linears, 7 per layer, 72,351,744 bytes per layer
2,605 MB

Token embeddings32.1% of the file: two untied int8 tensors of 151,936 × 4,096, input embedding and output head, one scale per row
1,245 MB

Per-row metadata0.6%: row dimensions, scales, and row sums
25 MB

Normalization weights145 tensors, kept float32: four per layer plus the final norm
1.2 MB

Container header
60 bytes

Byte budget of the 3,875,404,812-byte container, by tensor class.

Inside the coded lane

Across the 6.95B coded weights, 62.63% sit at zero and the remainder splits 18.68% plus to 18.69% minus: sign-balanced to a hundredth of a point with no constraint asking for it. The balance is not uniform in depth. The gate and down feed-forward projections spike to 70 to 72% zeros in layers 1 through 3 while all four attention projections hold within about one point of 62% at every depth: the early feed-forward blocks shed weights the network does not need, and attention keeps a constant code density from layer 0 to layer 35.

Share of coded weights at zero, per projection, across all 36 layers.

One container, three doors. The download is a coded transport of the container, not a compressed copy of an fp16 model: it expands bit-exactly to the file every runtime executes, and that one file is what runs on a datacenter GPU and on a laptop alike.

Downloadcoded transport, 2,559,822,594 bytes; expansion is bit-exact
2.56 GB

On diskone container, 3,875,404,812 bytes
3.88 GB

Distribution surfaces

pip engine

24.9 tok/s on an Apple M5, CPU only, 9 threads

The one-command door: pip install fermion-research downloads the container and the platform-matching native binary. CPU runtimes for macOS arm64 and Linux x86-64, with a bit-exact torch reference path underneath.

GGUF pack + CUDA fork

30.7 tok/s on an NVIDIA L4, 4.68 GiB at 4k context

The llama.cpp door: the container converted to GGUF with our weight types, loaded by our public llama.cpp fork. Runs llama-completion and llama-bench, with full CUDA offload.

MLX pack

33.7 tok/s on a base M5 MacBook

The Apple-silicon door: Python-native runtime with custom Metal kernels. The container is memory-mapped and the packed planes are decoded inside the GEMV kernels.

The release battery runs on the shipped container with thinking disabled, so every grade below is the artifact you download and not a research checkpoint. Protocol rides every row: shot count, grading mode, and item count.

MMLU5-shot, all 57 subjects, 14,042 items
72.1

MMLU-Reduxgenerative, re-annotated subset, thinking off
67.8

IFEval, prompt-strictgenerative, thinking off
77.2

IFEval, instruction-strictsame run, per-instruction grading
80.2

IFEval, prompt-loosesame run, loose extraction
76.3

BFCL v3macro over 13 subsets, thinking off
68.9

GSM8K, flexible extraction0-shot generative, greedy, 256-token cap
53.4

GSM8K, stated formatsame run, answer accepted only in the requested form
51.73

Measured on standard public harnesses, July 2026. Methodology on the model card.

Single-stream decode, the rate that governs one prompt and one reply. Same artifact on every row; the surface changes, the weights do not.

H100 80 GB, drafted0.6B draft + 8B verify, output identical to plain decode; fastest prompt class
763 tok/s

H100 80 GBplain single-stream greedy
396 tok/s

NVIDIA L4, CUDA forkGGUF pack, full offload, 4.68 GiB VRAM at 4k context; fits 8 GB cards
30.7 tok/s

Apple M5, 16 GB (MLX), draftedfactual prompts, 0.6B drafting in the same process under a 6 GiB cap
25.7 tok/s

Apple M5 MacBook (optimized)single-stream decode on the shipping artifact
33.7 tok/s

Apple M5 (CPU only)shipped native binary, 9 threads
24.9 tok/s

Single-stream decode rates by platform and surface, July 2026.

Neutrino-1 0.6B drafts a run of tokens, the 8B scores the whole run in one forward pass, and the agreeing prefix is kept. A draft token is accepted only when it equals the 8B's own argmax, so the output stream is the plain greedy stream: on the shipping configuration, 27,648 consecutive tokens matched with zero divergences.

The speedup is draft-acceptance physics, so it is stated per prompt class over the 396 tok/s plain rate. On counting prompts the 8B accepts the full six-token draft on every pass, about seven tokens emitted per 8B forward; on factual prompts acceptance holds at 96.5%. A dynamic controller sizes each draft to the class it is decoding, which is why every class clears the plain rate.

Counting and lists763 tok/s
×1.93

Factual short answers613 tok/s
×1.55

Prose continuation532 tok/s
×1.34

Conversational explanation447 tok/s
×1.13

Code426 tok/s
×1.07

H100, three-round median per prompt class, over 396 tok/s plain decode.

What the pairing costs

Both containers are the same format and run on the same binaries, so the draft loads into the verifier's own process with no second deployment and no conversion step. Its 328 MB sit beside the 8B's 3.88 GB, and 4k tokens of shared context cost exactly one gibibyte of cache across the pair.

one process, one set of binariesNeutrino-1 0.6B, 328 MBNeutrino-1 8B, 3.88 GBsix proposed tokensaccepted prefix

Weights resident3.88 GB verifier plus 328 MB draft, one process
4.20 GB

Draft surchargethe extra weight bytes the pairing costs
8.46%

Shared cache144 KiB on the 8B, 112 KiB on the draft; 1 GiB at 4k context
256 KiB per token

Certified rundraft plus verify against plain greedy, zero divergences
27,648 tokens

The drafted pair drawn to byte scale, with the residency each side costs.

Drafting on a laptop

The pairing is not a datacenter feature. On a 16 GB Apple M5 both models load into one MLX process under a 6 GiB cap and peak at 4.3 GiB together, with the draft accounting for 0.53 GiB of it. The exactness gate returns 6 of 6 prompts token-identical with drafting on and off, and on factual prompts the drafted rate is 25.71 tok/s against 22.00 plain at an acceptance of 0.744.

Two commands to a streaming chat.

$ pip install fermion-research

$ fermion chat

The first run pulls the container and the native binary for the host, then the prompt opens. Later runs load from cache.

  • A local OpenAI-compatible serverfermion serve

    Serves at http://127.0.0.1:8000/v1. Point any OpenAI client at that base URL; the key can be any string.

  • Any of the three modelsfermion chat --model fermionresearch/Neutrino-0.6B-Chat

    --model takes a repository id or a path on disk. --backend native pins the compiled runtime instead of the torch path.

  • GGUF, through our llama.cpp forkllama-completion -m neutrino-8b-fv5.gguf -ngl 99

    Build the fork, then run the pack from the model repository. The CUDA build offloads all 36 layers.

  • MLX, on Apple siliconpython -m fermion_mlx --model neutrino-8b_v4.bin --mode chat --tokenizer .

    Run from the mlx/ folder of the model repository, after installing its requirements file.

Full engine documentation

Neutrino-1 8B ships as a single public repository holding the weights, the native binaries, the GGUF pack, and the MLX pack together, so there is never a version of one that does not match the others. No waitlist, no gated preview.

Weights and engine in one repository.

Available 2026-07-27One public repositoryOpen weights, Apache 2.0

License

Open weights under the Apache License 2.0. Commercial use, modification, fine-tuning, and redistribution are permitted, with no access request and no acceptance form. The model is a derivative of Qwen3-8B, itself Apache-2.0. The pip package is Apache-2.0 too; the llama.cpp fork is MIT, following upstream llama.cpp.

Citation

@misc{fermionresearch2026neutrino,
  title  = {Neutrino-1 8B},
  author = {{Fermion Research}},
  year   = {2026},
  url    = {https://fermionresearch.com/models/neutrino-8b/}
}

Frontier intelligence on local silicon.

© 2026 Fermion Research. All rights reserved.

Fermion
Research