parameter
A parameter is a learned internal value, such as a weight or bias, in a model that determines how inputs are mapped to outputs.
Parameters are initialized before training and updated from data via optimization, such as gradient descent and backpropagation. They’re typically represented as tensors and may be fully trainable, frozen during fine-tuning, or modified via parameter-efficient adapters.
Unlike hyperparameters, which configure the model or training process but are not learned from data, parameters are learned.
Related Resources
Course
Building a Neural Network & Making Predictions With Python AI
In this step-by-step course, you'll build a neural network from scratch as an introduction to the world of artificial intelligence (AI) in Python. You'll learn how to train your neural network and make accurate predictions based on a given dataset.
By Leodanis Pozo Ramos • Updated June 28, 2026