Skip to content

v2.0.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 09 Jul 21:28
· 6 commits to main since this release
7f9a153

ModelingToolkitNeuralNets v2.0.0

Diff since v1.7.0

Breaking changes

  • The NeuralNetworkBlock no longer uses RealInputArray & RealOutputArray,
    the ports are now inputs and outputs and they are normal vector variables.
    To change connection equations involving the old RealInputArray API,
    change from connecting the system to connecting with the underlying .u
- connect(sys.nn_in, nn.output)
+ connect(sys.nn_in.u, nn.outputs)

where nn is the NeuralNetworkBlock.

  • The package now requires ModelingToolkit@v10

Merged pull requests:

Closed issues:

  • Cannot simulate single input SymbolicNeuralNetwork model (#57)