Model parameters are also called weights and biases.
These parameters are adjusted during the training process to optimize the model’s performance on the given task.
See also: Model Parameters Tuning Optimisation techniques
Examples
-
- Coefficients (weights) for each feature in the input data.
- Intercept term (bias).
-
- Similar to linear regression, it has coefficients for each feature and an intercept term, but it models the probability of a binary outcome.
-
- Weights: The connections between neurons in different layers.
- Biases: Additional parameters added to the weighted sum of inputs to a neuron.
-
Support Vector Machines (SVM):
- Support vectors: Data points that define the decision boundary.
- Coefficients for the hyperplane equation.
-
Decision Trees: Decision Tree
- Splitting thresholds for each node.
- Structure of the tree (which features are used at each split).
-
- Centroids: The center points of each cluster.