Jayaram
Jayaram
Pasting the error below for convenience: --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /anaconda3/envs/knn_expts/lib/python3.7/site-packages/numba/errors.py in new_error_context(fmt_, *args, **kwargs) 716 try: --> 717 yield 718 except NumbaError as e: /anaconda3/envs/knn_expts/lib/python3.7/site-packages/numba/lowering.py in...
Let me try that. Thanks.
No luck. I am running into the same error using the branch `new_search`.
No worries. I'll dig into it when I get some time as well. Thanks.
Additional clarification: There is an error with user-defined distance metrics **only** when the metric takes keyword argument(s). That is the `NNDescent` class is given a `metric_kwds` argument. There is no...
That's a good suggestion. I modified the default value for the keyword argument `shape` from `None` to the tuple `(1, 1, 1)`. That leads to the same error unfortunately.
I just gave the latest version `0.4.2` a try. Unfortunately, I am running into the same (or very similar) error when I use a custom distance metric with a keyword...
Some unrelated questions: 1. Is it alright to continue using version `0.3.3` (i.e. no known bugs)? 2. I noticed that the `NNDescent` class API has changed a bit in version...
Got it. Thanks.
Adding my 2 cents here since I had to handle a similar problem. Suppose you build a KNN index on a set of points `data` as follows: ``` index_knn =...