Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove warning that IVF_PQ index is not supported #557

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions apis/python/src/tiledb/vector_search/ivf_pq_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ def query_internal(
Number of partitions to check per query.
Use this parameter to trade-off accuracy for latency and cost.
"""
warnings.warn("The IVF PQ index is not yet supported, please use with caution.")
if self.size == 0:
return np.full((queries.shape[0], k), MAX_FLOAT32), np.full(
(queries.shape[0], k), MAX_UINT64
Expand Down Expand Up @@ -195,7 +194,6 @@ def create(
The TileDB vector search storage version to use.
If not provided, use the latest stable storage version.
"""
warnings.warn("The IVF PQ index is not yet supported, please use with caution.")
validate_storage_version(storage_version)
# TODO(SC-49166): Support old storage versions with type-erased indexes.
if storage_version == "0.1" or storage_version == "0.2":
Expand Down
Loading