What is a Model Parameters?

Model parameters are the internal numerical values, weights and biases, that a neural network learns during training and uses to transform input into output.

A model's parameter count (7B, 70B, 405B, etc.) is the number of these learned values, and it's a rough proxy for capacity: more parameters generally let a model represent more complex patterns, at the cost of more memory and compute to run. Parameters are distinct from hyperparameters, which are settings chosen before training (learning rate, batch size, number of layers) rather than learned from data. During inference, parameters are fixed, the model doesn't update them while answering a query. Fine-tuning and continued pretraining are the processes that change parameter values after the initial training run, whether through full fine-tuning (updating all parameters) or parameter-efficient methods like LoRA that only adjust a small added subset.

In practice with Neotask

Neotask's model router considers parameter count and architecture as one signal, alongside latency, cost, and task type, when deciding which underlying model handles a given step of an agent workflow, since a smaller-parameter model is often sufficient and cheaper for simple classification or extraction steps.

Related terms

Start free

Plans

Free

$0/mo

Download without a card and start for free.

Individual

$50/mo

The full personal agent platform for one person.

Enterprise

$200/mo

Multiple workspaces and capacity for larger teams.

Continue