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
Is your feature request related to a problem? Please describe.
Currently, methods in hyppo cast the input values to a float. While this is fine in most cases, it would be better to test if this restriction can be loosened to allow other types like int and see if the unit tests still pass.
Is your feature request related to a problem? Please describe.
Currently, methods in
hyppo
cast the input values to afloat
. While this is fine in most cases, it would be better to test if this restriction can be loosened to allow other types likeint
and see if the unit tests still pass.Describe the solution you'd like
The solution has 3 steps:
_CheckInputs
. See ifx
can bearray_like
like here: https://scipy.github.io/devdocs/reference/generated/scipy.stats.multivariate_normal.html?highlight=multivariate#scipy.stats.multivariate_normal. This involves changing all the input checks into something similar to what is in SciPyarray_like
Describe alternatives you've considered
Additional context (e.g. screenshots)
The text was updated successfully, but these errors were encountered: