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
But when I try to build the index on using CREATE INDEX ON table USING diskann (embedding);, I run into the following error:
ERROR: data type halfvec has no default operator class for access method "diskann"
HINT: You must specify an operator class for the index or define a default operator class for the data type.
Are fp16 vectors not yet supported?
The text was updated successfully, but these errors were encountered:
Note that we are already using quantization to compress vectors in the index, so query performance would likely not be boosted much by using f16. (Storage costs in the main table would be reduced, of course).
I have a table with fp16 embeddings:
But when I try to build the index on using
CREATE INDEX ON table USING diskann (embedding);
, I run into the following error:Are fp16 vectors not yet supported?
The text was updated successfully, but these errors were encountered: