Hi all,
I’m working on an ODE model where I want to infer a parameter μ and a function ϕ(t), and I’m looking for recommendations for tools or approaches in Julia to solve this problem. My dataset is small, with just 7 data points in the form (t, n).
The model is given by:
\frac{dn}{dt} = \phi(t) - \mu \, n(t), \quad n(t=0) = 0
I’m considering two possible approaches for modeling ϕ(t):
- Gaussian Process (GP) for a non-parametric approach.
- Neural Networks (NNs) to approximate ϕ(t), but with strong regularization given the limited data.
Which approach and related packages would you recommend in Julia for this problem?
Any guidance or relevant examples would be greatly appreciated!
Thanks in advance for your help!