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 sklearn is only used in isotonic regression when functional="mean". This is because the sklearn implementation is about 4 times faster than implementing it ourselves.
Additionally, the current implementation uses scipy's interpolate.interp1d which is a legacy function that won't be supported in the future. We should explore replacements
Currently sklearn is only used in isotonic regression when
functional="mean"
. This is because the sklearn implementation is about 4 times faster than implementing it ourselves.Recently scipy added an isotonic regression function https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.isotonic_regression.html .
We should investigate if we can use that and drop the sklearn dependency
The text was updated successfully, but these errors were encountered: