We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ce15d commit 6bb5d2bCopy full SHA for 6bb5d2b
apis/python/src/tiledb/vector_search/ivf_flat_index.py
@@ -334,4 +334,4 @@ def dist_qv_udf(
334
tmp.append((float(0.0), int(0)))
335
results_per_query_d.append(np.array(tmp, dtype=np.dtype("float,uint64"))["f0"])
336
results_per_query_i.append(np.array(tmp, dtype=np.dtype("float,uint64"))["f1"])
337
- return results_per_query_d, results_per_query_i
+ return np.array(results_per_query_d), np.array(results_per_query_i)
0 commit comments