我正在尝试通过以下命令使用nmslib加载大约8.6GB的索引:
search_index = nmslib.init(method='hnsw', space='cosinesimil')
search_index.loadIndex('./data/search/search_index.nmslib')
但是,发生以下错误:
Check failed: data_level0_memory_
Traceback (most recent call last):
search_index.loadIndex("./data/search/search_index.nmslib")
RuntimeError: Check failed: it's either a bug or inconsistent data!
我的计算机只有8GB作为主内存。那么,是否由于索引超过8GB而无法将其加载到内存中而发生此错误?
谢谢您的帮助。