You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the various parameter inference algorithms are implemented in pure python (with some vectorized operations via numpy).
Since most of these algorithms are iterative, the implementation is still relatively slow and inefficient. From experience, numba could potentially speed up the code by several orders of magnitude.
I hence intend to speed up some of the inference algorithms with numba, starting with the opt_* functions.
The text was updated successfully, but these errors were encountered:
Currently the various parameter inference algorithms are implemented in pure python (with some vectorized operations via numpy).
Since most of these algorithms are iterative, the implementation is still relatively slow and inefficient. From experience, numba could potentially speed up the code by several orders of magnitude.
I hence intend to speed up some of the inference algorithms with numba, starting with the
opt_*
functions.The text was updated successfully, but these errors were encountered: