Active parameters count the weights that actually participate in one token’s forward pass. In a dense model this equals the total parameter count, but in a mixture-of-experts model only the selected experts run, so the active count can be a small fraction of the total: DeepSeek-V3 stores 671B parameters and activates 37B per token, about 5.5%.
The number matters because per-token training and serving FLOPs scale with active parameters while memory scales with total parameters. Two sparse models with the same total can have very different serving costs, which is why modern model names and cards quote both figures.
