ModelingToolkitNeuralNets v2.0.0
Breaking changes
- The
NeuralNetworkBlock
no longer usesRealInputArray
&RealOutputArray
,
the ports are nowinputs
andoutputs
and they are normal vector variables.
To change connection equations involving the oldRealInputArray
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:
- add sources to docs project (#62) (@asinghvi17)
- Update to MTK@v10 and simplify connectors (#63) (@SebastianM-C)
Closed issues:
- Cannot simulate single input
SymbolicNeuralNetwork
model (#57)