juguma

Results 8 issues of juguma

Please provide an example (and presumably missing functionality) to include an input-function into the FMU-layer of an FMIFlux.Chain. This is crucial when you work with FMUs that only create reasonable...

You can define a ME-NeuralFMU via https://github.com/ThummeTo/FMIFlux.jl/blob/77471fba7cd47648c7c6afdf5bab9f8050aaaf13/src/neural.jl#L87 You can call the created nfmu https://github.com/ThummeTo/FMIFlux.jl/blob/77471fba7cd47648c7c6afdf5bab9f8050aaaf13/src/neural.jl#L1044 with a series of arguments. Some of these arguments redefine the values of the member variables...

### Problem description and MWE The attached script is a reduced and modified variant of simple_hybrid_ME.ipynb. Removed has been anything unnecessary to reproduce the error. Modifications are: - inclusion of...

This is a feature request. For FMUs which are not able to get/set their state, the proposed call sequence to batch the training (as in juliacon_2023.ipynb) does not work. The...

enhancement

If you have a `ME_NeuralFMU` defined with `recordValues`, which you use in a `batchDataSolution`, from which you create a `FMIFlux.Losses.loss(neuralFMU, batch; ...)`, then the `ForwardDiff.gradient` cannot be calculated. You receive...

[juliacon_2023_distributedhyperopt.jl,](https://github.com/ThummeTo/FMIFlux.jl/blob/main/examples/src/juliacon_2023_distributedhyperopt.jl) line 17 wants to include `workshop_module.jl`, however this file does not exist in the repo. I wonder if this is the *.jl variant of the [juliacon_2023.ipynb](https://github.com/ThummeTo/FMIFlux.jl/blob/main/examples/src/juliacon_2023.ipynb), with all the...

The FMIImport-function fmi2SetDebugLogging can't be used to activate logging - the type of the last argument is ::Ptr{Nothing} which is at least not very intuitive to fill. Furthermore, the fmi2ModelDescription...

When you call the fmu without having it simulated first, you get an assert that no FMU2Component is allocated. ``` fmi = fmiLoad("SpringPendulumExtForce1D", "Dymola", "2022x"; type=:ME) fmu() ``` The description...