mlx.nn.Module.state#
- property Module.state#
 The module’s state dictionary
The module’s state dictionary contains any attribute set on the module including parameters in
Module.parameters()Unlike
Module.parameters(), theModule.stateproperty is a reference to the module’s state. Updates to it will be reflected in the original module.