我有一个 faiss 索引,想在我的 python 脚本中使用一些嵌入。嵌入的选择应该由 id 完成。由于 faiss 是用 C++ 编写的,因此 swig 被用作 API。
我想我需要的功能是重建:
/** Reconstruct a stored vector (or an approximation if lossy coding)
*
* this function may not be defined for some indexes
* @param key id of the vector to reconstruct
* @param recons reconstucted vector (size d)
*/
virtual void reconstruct(idx_t key, float* recons) const;
因此,我在python中调用了这个方法,例如:
vector = index.reconstruct(0)
但这会导致以下错误:
vector = index.reconstruct(0) 文件“lib/python3.8/site-packages/faiss/ init .py”,第 406 行,replacement_reconstruct self.reconstruct_c(key, swig_ptr(x)) 文件“lib/python3.8 /site-packages/faiss/swigfaiss.py",第 1897 行,在重建中返回 _swigfaiss.IndexFlat_reconstruct(self, key, recons)
TypeError:在方法“IndexFlat_reconstruct”中,“faiss::Index::idx_t”类型的参数 2 python-BaseException
有人知道我的方法有什么问题吗?