Replies: 1 comment 1 reply
-
Hi,
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, I use FMIFlux.jl to combine FMU and NN to do parameter calibration / learning unmodeled effects.
To export FMU from simulation model, I use OpenModelica instead of Dymola because it is an open source. However, after using
fmiInfo()
to show FMU information, I found that OpenModelica seems not support some functionalities of FMU which may effect the FMIFlux.jl I guess.Here is the FMU information I use right now (the FMU is exported by OpenModelica):
What I want to know :
Get/Set State
,Serialize State
,...etc) are needed to make sure there are no problems when training NeuralFMU with FMIFlux.jl?Get/Set State
andSerialize State
are false. Will they make the training of NeuralFMU with FMIFlux.jl go wrong? Because I really encounter some issues when using ME-type NeuralFMU.By the way, I have known that Directional Derivatives should be true because the Jocobian of FMU is needed to keep the NeuralFMU trainable (from https://doi.org/10.3384/ecp21181297). To people who want to enable this functionality, you can refer to this github issue
Beta Was this translation helpful? Give feedback.
All reactions