-
Notifications
You must be signed in to change notification settings - Fork 947
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
How to add Tsit5 solver? #194
Comments
I'm not familiar with julia so I've found a nim implement in numericalnim. It uses same coefficients as the paper mentioned.
|
Already Know: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! I'm trying to use Neural ODE in a forecasting (extrapolating longer) problem.
Tsit5
is a newly-published explicit method (see paper) and available solver for Julia ProjectDifferentialEquations.jl
. A Forecasting notebook shows it's popular in this task.I want to implement Tsit5 solver with torchdiffeq. It should be like this (coefficients unchanged from
dopri5.py
):It's easy to figure out
alpha
,beta
andc_sol
, but what is the meaning ofc_error
and_TS_C_MID
?The text was updated successfully, but these errors were encountered: