-
Hi, currently I encounter an error when calling a ME_NeuralFMU` in loss function
```
function lossSum(p)
global neuralFMU, x₀, params, counter
params = Dict(zip(Vector{String}(modified…
-
Currently, I am trying to use `FMUParameterRegistrator` to do parameter calibration/estimation but encounter some issues.
I do experiments on both ME-type & CS-type FMU:
- **For ME-type FMU**
…
-
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 first instance where i…
-
Hi,
Let us assume I have the parameters of a neural network that I have trained using the neural ODE framework. Is it possible for me to use this package to export it as an FMU?
I have spent some…
-
## Issue
I want to simulate a number of FMUs in parallel with FMI.jl and reuse the already loaded FMUs for multiple runs, but encounter an error in FMIImport where `cd` is used to change the director…
-
In [src/batch.jl](https://github.com/ThummeTo/FMIFlux.jl/blob/main/src/batch.jl) in function `batchDataSolution` it is written:
```
if plot
fig = FMIFlux.plot(batch[i-1]; solver…
-
When you call an ME_NeuralFMU https://github.com/ThummeTo/FMIFlux.jl/blob/177045b408fdeac2769778cc02c3fc3df21f364d/src/neural.jl#L1043, for which you haven't defined a solver, you get an error
**Met…
-
Hi,
This is not a bug report. Merely a question (and perhaps clarification of a my misunderstanding :-))
I would like to specify the FMU inputs when calling `fmiEvaluteME()` and I can see that t…
-
... see [testing scripts](https://github.com/ThummeTo/FMIFlux.jl/blob/4800d424272d8075a0bf0c65243b09a8e56a87bf/test/hybrid_CS.jl#L77). The time for gradient determination seems to increase with every …
-
If the chain only contains the fmu layer, the execution fails:
```julia
chain = FMIFlux.Chain(x -> fmu(;x=x)[2] )
neuralFMU = ME_NeuralFMU(fmu, chain, (0.0, 1.0), Tsit5())
solution = neuralFMU(x) …