-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fitting large ODE model #236
Comments
This proved to be an interesting problem. You get the error because the event handling in SciMLSensitivity has changed, which is bug (I actually do not test PEtab.jl for the setting adjoint with events which I should). Regardless, after doing some benchmarks, I do not think petab_problem = PEtabODEProblem(petab_model,
gradient_method = :ForwardEquations,
sensealg = :ForwardDiff,
hessian_method = :GaussNewton,
reuse_sensitivities = true,
odesolver=ODESolver(QNDF() , abstol=1e-3, reltol=1e-6),
sparse_jacobian = false, verbose = true) The Hope this helps! |
Hi,
I am trying to replicate the following paper:
https://www.nature.com/articles/s41598-01
Here are the codes I have for parameter fitting. The last version of PEtab worked ok but I cannot reproduce what I was doing in the current one. I also used the original published model to generate some artificial data but I was not able to capture the behavior
nfat_model.zip
The text was updated successfully, but these errors were encountered: