-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add FastScan refinement tutorial for python
Differential Revision: D57650807
- Loading branch information
1 parent
f38e52c
commit 7eb42f3
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright (c) Facebook, Inc. and its affiliates. | ||
# | ||
# This source code is licensed under the MIT license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
import faiss | ||
import numpy as np | ||
|
||
d = 64 # dimension | ||
nb = 100000 # database size | ||
nq = 10000 # nb of queries | ||
np.random.seed(1234) # make reproducible | ||
xb = np.random.random((nb, d)).astype('float32') # 64-dim *nb queries | ||
xb[:, 0] += np.arange(nb) / 1000. | ||
xq = np.random.random((nq, d)).astype('float32') | ||
xq[:, 0] += np.arange(nq) / 1000. | ||
|
||
m = 8 # 8 specifies that the number of sub-vector is 8 | ||
k = 4 # number of dimension in etracted vector | ||
n_bit = 4 # 4 specifies that each sub-vector is encoded as 4 bits | ||
bbs = 32 # build block size ( bbs % 32 == 0 ) for PQ | ||
|
||
index = faiss.IndexPQFastScan(d, m, n_bit, faiss.METRIC_L2) | ||
index_refine = faiss.IndexRefineFlat(index) | ||
# construct FastScan and run index refinement | ||
|
||
assert not index_refine.is_trained | ||
index_refine.train(xb) # Train vectors data index within mockup database | ||
assert index_refine.is_trained | ||
|
||
index_refine.add(xb) | ||
params = faiss.IndexRefineSearchParameters(k_factor=3) | ||
D, I = index_refine.search(xq[:5], 10, params=params) | ||
print(I) | ||
print(D) | ||
index.nprobe = 10 # make comparable with experiment above | ||
D, I = index.search(xq[:5], k) # search | ||
print(I[-5:]) |