# Kimi K3 开源模型发布：2.8T参数，采用NoPE与注意力残差架构

- 来源：Hacker News 热门（buzzing.cc 中文翻译）
- 作者：ModelForge
- 发布时间：2026-07-29 02:49
- AIHOT 分数：46
- AIHOT 链接：https://aihot.virxact.com/items/cms50o3e6003lrorremxyn8cm
- 原文链接：https://sebastianraschka.com/blog/2026/kimi-k3-architecture-notes.html

## AI 摘要

月之暗面发布Kimi K3，一个2.8T参数的开源权重模型，是目前最大的开源模型。该模型是去年Kimi Linear的规模化版本，新增LatentMoE组件，并全面采用NoPE（无位置嵌入）替代RoPE。其注意力残差连接在训练和推理成本上分别增加约4%和2%，但持续改善了验证损失和下游性能。

## 正文

The Kimi K3 architecture figure for yesterday’s big open-weight model release, along with some observations and thoughts.

Yes, it looks relatively complicated, but it’s essentially a scaled-up production version of their Kimi Linear model they released last year (scaled up from 48B -> 2.8T; K3 is by far the biggest open-weight model right now)

The one new component compared to Kimi Linear is the LatentMoE. I omitted it in the figure below since it’s already very crowded, but that’s essentially the same LatentMoE as in Nemotron 3 Ultra (you can find it in my LLM Architecture Gallery if you are curious). The idea here is to compress (down-project) large linear layers similar to multi-head latent attention.

Kimi K3’s overall trend (similar to Nemotron 3, DeepSeek V4, and others) is also towards better inference efficiency. That is, there are many components that replace existing components with efficiency-tweaked versions. I.e., MoE -> LatentMoE, regular attention -> multi-head latent attention and Kimi Delta Attention. (I also have short tutorials and write-ups in my gallery if you are curious about additional details).

The one component change that is not an efficiency tweak is attention residuals. Like DeepSeek V4 improved the residual path with mHC (manifold-constrained Hyper-Connections), attention residuals are a way to improve the residual path, but it works a bit differently. I.e., mHC made the residual path wider. Attention residuals (also already part of Kimi Linear) connect the residuals across layers; the connection itself uses an attention score for an important/contribution weight. According to the report, it improves the validation loss and downstream performance (a bit) consistently and adds about 4% in training cost and 2% in inference cost.

Interestingly, Kimi K3 got rid of all RoPE layers and uses NoPE (No Positional Embeddings) everywhere instead. (Again, this is inherited from Kimi Linear). In other architectures, the recent trend was towards RoPE in local attention layers (like sliding window attention) and NoPE in the global layers. There were a few architectures that only used NoPE everywhere, but this is the first frontier-level one as far as I know.

Kimi K3 now also has native multimodal support, which is great!

There are several other interesting training tidbits in the technical report, but that’s it from the architecture front so far. A really great release overall.

Figure 1. Kimi K3 architecture and release-time benchmark comparisons. See K3 in the architecture gallery for more details.

Source: website version of my Substack note.
