Replies: 1 comment 3 replies
-
By stochastic models, we mean solving stochastic differential/difference equations using RxInfer. In the example you have provided, if I am not mistaken, you solve difference equation while simultaneously learning the parameters of the difference equation. In the previous issue #56, we could create a composite node that fused the ODE solution such that we could obtain parameter estimates of the underlying ODE. This approach worked because the ODE was solved using DifferentialEquations.jl and RxInfer could evaluate logpdf of Poisson likelihood using the observations and the transformed ODE solution. Nevertheless in the current scenario, there are no observations to evaluate logpdfs nor a solution by a solver. If you use an outside solver then RxInfer can learn the parameters with the trick in #56 , otherwise it is not straightforward since the aim in this scenario is to solve the difference equation using RxInfer while learning the parameters. Once we progress in that roadmap, one can solve these scenarios as well. I am not really familiar with Gen.jl so my understanding of what the example does might be completely off. If that is the case perhaps a bit more context would be appreciated. That being said,It would still be possible to obtain a solution in the current state of RxInfer but the solution will be convoluted and not straightforward to explain non-developers. Perhaps, I or @bvdmitri can have a look how we can solve this problem once we have time. I hope this explanation helps. |
Beta Was this translation helpful? Give feedback.
-
I saw that stochastic models were on the roadmap, and was curious as to what was meant by that. Will it be possible to fit models such as this one, for which I used Gen.jl?
Beta Was this translation helpful? Give feedback.
All reactions