mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
7 lines
155 B
Python
7 lines
155 B
Python
import faiss
|
|
|
|
def write_index(index, file_name):
|
|
faiss.write_index(index, file_name)
|
|
|
|
def read_index(file_name):
|
|
return faiss.read_index(file_name) |