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
Check out line 1072 in sample.py... this appears to be a situation where a function was never finished. Not entirely sure what this means, since a discretization holds three different sample sets, so this could be querying any one of them.
It's a null-function. What was this function supposed to do? Should we remove it?
I already have functions coming down the pipeline that make getting input/output easier get_input().query() etc would be the appropriate call.
1069 def query(self, x, k=1):
1070 """
1071 Identify which value points x are associated with for discretization.
1072
1073 :param x: points for query
1074 :type x: :class:`numpy.ndarray` of shape ``(*, dim)``
1075 :param int k: number of nearest neighbors to return
1076
1077 """
1078 pass
The text was updated successfully, but these errors were encountered:
Check out line 1072 in
sample.py
... this appears to be a situation where a function was never finished. Not entirely sure what this means, since a discretization holds three different sample sets, so this could be querying any one of them.It's a null-function. What was this function supposed to do? Should we remove it?
I already have functions coming down the pipeline that make getting input/output easier
get_input().query()
etc would be the appropriate call.The text was updated successfully, but these errors were encountered: