Also known as: parameter
Parameter sind interne Modellwerte wie Gewichte und Biases, die während des Trainings gelernt oder angepasst werden. Sie bestimmen, wie ein Modell Eingaben in Ausgaben transformiert, und unterscheiden sich von Hyperparametern, die den Lernprozess konfigurieren.
Internal variables that a model uses to determine how the model processes input data and how it generates outputs. During training, you can adjust model parameters, such as weight and bias, to optimize the model's performance. During inference, you can influence the model's output through various prompting parameters, which doesn't directly change the learned model parameters. Key prompting parameters include temperature, topP, topK, and maxOutputTokens.
The weights and biases that a model learns during training. For example, in a linear regression model, the parameters consist of the bias (b ) and all the weights (w~1~, w~2~, and so on) in the following formula: In contrast, hyperparameters are the values that you (or a hyperparameter tuning service) supply to the model. For example, learning rate is a hyperparameter.