We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I generated a vector index file using the following C++code on Faiss version 1.7.4:
faiss::IndexFlatL2 indexa = faiss::IndexFlatL2(d); faiss::IndexIVFScalarQuantizer index = faiss::IndexIVFScalarQuantizer(&indexa,d,nlist,faiss::ScalarQuantizer::QuantizerType::QT_8bit); index.train(len,vdatas); index.add(len,vdatas); faiss::write_index(&index, "ivfsq8.index");
Can I load and use the generated index file "ivfsq8.index" on Faiss version 1.9.0?
OS: linux
Faiss version: 1.7.4 1.9.0
Installed from: compiled by myself
Faiss compilation options: ignore
Running on:
Interface:
ignore
The text was updated successfully, but these errors were encountered:
Hi @rose839, does this not work for you?
index_read and index_write should be backwards compatible. If a field is removed then it has to read/write a dummy, like in #3692.
Sorry, something went wrong.
I did a simple test, it works between 1.7.4 and 1.9.0。Thank you very much。
mnorris11
No branches or pull requests
Summary
I generated a vector index file using the following C++code on Faiss version 1.7.4:
Can I load and use the generated index file "ivfsq8.index" on Faiss version 1.9.0?
Platform
OS: linux
Faiss version: 1.7.4 1.9.0
Installed from: compiled by myself
Faiss compilation options: ignore
Running on:
Interface:
Reproduction instructions
ignore
The text was updated successfully, but these errors were encountered: