What the parameter count in a model's name means
AI Systems看中文版

What the parameter count in a model's name means

The B in a name like gpt-oss-20b counts parameters, in billions. Multiply that count by the bytes each parameter takes and you get a floor for the memory the weights need. That is also why some models now ship with two numbers instead of one.

2026-08-14 · 5 min read · 855 words · KbWen · EN
AI Systems

How the KV cache speeds up LLM generation

A transformer redoes the same attention projections for every past token at each decoding step. The KV cache stores those keys and values so they get reused instead of recomputed, and the one cost it adds is memory that grows with the sequence.

2026-08-06 · 4 min read · 771 words · KbWen · EN
把 temperature 設成 0,AI 就會每次都一樣嗎?
AI Systems

把 temperature 設成 0,AI 就會每次都一樣嗎?

網路上常說:要 AI 每次給一樣的答案,把 temperature 設成 0 就好。但有人拿同一個 prompt、temperature 0 連跑 1000 次,還是冒出 80 種不同輸出。原因除了浮點誤差,更關鍵的是它在 GPU 上跟多少別的請求湊成一批一起算。聊聊為什麼『最確定』不等於『可重現』。

2026-06-19 · 4 min read · 1757 words · KbWen · ZH