Source code for gnes.indexer.vector.faiss

#  Tencent is pleased to support the open source community by making GNES available.
#
#  Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#  http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.


import os
from typing import List, Tuple, Any

import numpy as np

from ..base import BaseVectorIndexer
from ..key_only import ListKeyIndexer


[docs]class FaissIndexer(BaseVectorIndexer): def __init__(self, num_dim: int, index_key: str, data_path: str, *args, **kwargs): super().__init__(*args, **kwargs) self.data_path = data_path self.num_dim = num_dim self.index_key = index_key self._key_info_indexer = ListKeyIndexer()
[docs] def post_init(self): import faiss try: if not os.path.exists(self.data_path): raise FileNotFoundError('"data_path" is not exist') if os.path.isdir(self.data_path): raise IsADirectoryError('"data_path" must be a file path, not a directory') self._faiss_index = faiss.read_index(self.data_path) except (RuntimeError, FileNotFoundError, IsADirectoryError): self.logger.warning('fail to load model from %s, will init an empty one' % self.data_path) self._faiss_index = faiss.index_factory(self.num_dim, self.index_key)
[docs] def add(self, keys: List[Tuple[int, Any]], vectors: np.ndarray, weights: List[float], *args, **kwargs): if len(vectors) != len(keys): raise ValueError("vectors length should be equal to doc_ids") if vectors.dtype != np.float32: raise ValueError("vectors should be ndarray of float32") self._key_info_indexer.add(keys, weights) self._faiss_index.add(vectors)
[docs] def query(self, keys: np.ndarray, top_k: int, *args, **kwargs) -> List[List[Tuple]]: if keys.dtype != np.float32: raise ValueError("vectors should be ndarray of float32") score, ids = self._faiss_index.search(keys, top_k) score = self.normalize_score(score) ret = [] for _id, _score in zip(ids, score): ret_i = [] chunk_info = self._key_info_indexer.query(_id) for c_info, _score_i in zip(chunk_info, _score): ret_i.append((*c_info, _score_i)) ret.append(ret_i) return ret
[docs] def normalize_score(self, score: np.ndarray, *args, **kwargs) -> np.ndarray: if 'HNSW' in self.index_key: return 1 / (1 + np.sqrt(score) / self.num_dim) elif 'PQ' or 'Flat' in self.index_key: return 1 / (1 + np.abs(np.sqrt(score)))
@property def size(self): return self._faiss_index.ntotal def __getstate__(self): import faiss d = super().__getstate__() faiss.write_index(self._faiss_index, self.data_path) return d