Hello Feder team!
I'm trying to run your test example, but without using a remote index source location like `https://assets.zilliz.com/hnswlib_hnsw_voc_17k_1f1dfd63a9.index%60. I downloaded the index and put it in my directory.
With the remote index, all the visualizations were loaded, but with the local index, the visualizations didn't load and became stuck in an infinite loop.
Can you explain why this is happening, please?
Here is the code with both sources:
from federpy.federpy import FederPy
if __name__ == '__main__':
hnswSource = 'hnswlib'
hnswIndexFile = 'https://assets.zilliz.com/hnswlib_hnsw_voc_17k_1f1dfd63a9.index'
# hnswIndexFile = 'hnswlib_hnsw_voc_17k_1f1dfd63a9.index'
# Lite version, only input indexFile, no viewParams, no images.
federPy_hnsw_lite = FederPy(hnswIndexFile, hnswSource)
# federPy_hnsw_lite.overview()
federPy_hnsw_lite.searchRandTestVec()
Hello Feder team!
I'm trying to run your test example, but without using a remote index source location like `https://assets.zilliz.com/hnswlib_hnsw_voc_17k_1f1dfd63a9.index%60. I downloaded the index and put it in my directory.
With the remote index, all the visualizations were loaded, but with the local index, the visualizations didn't load and became stuck in an infinite loop.
Can you explain why this is happening, please?
Here is the code with both sources: