In this tutorial, we will revisit the problem defined in the previous tutorial and demonstrate how to work with model parameters.
Recall that the linear elasticity material model can be mathematically written as
Also recall that all NEML2 models can be written in the following general form
Pattern matching suggests the following set definitions:
Parameter vs buffer
Both and are here categorized as model parameters. The major differences between parameters and buffers are
Parameters are "trainable", whereas buffers are not. NEML2 can use automatic differentiation to calculate the derivative of output variables with respect to the model parameters, but not for the model buffers.
Parameters can be (recursively) defined by other models, whereas buffers cannot. This feature is discussed in a later tutorial.
In summary, a parameter is a more powerful superset of a buffer. However, there is overhead cost associated with maintaining a parameter that buffers avoid.
Note
Some models allow users to choose whether to declare data as parameters or buffers.
Retrieving the parameter value
All model parameters are associated with a unique name, either predefined by the model itself or chosen by the user. The following code iterates through all parameters in the model and print out their values:
Model parameters can always be changed by changing the input file. However, in certain cases (e.g., training and optimization), the parameter values should preferrably be updated at runtime (e.g., after each epoch or optimization iteration).