Skip to content

Commit

Permalink
Fix wrong link in readme.MD
Browse files Browse the repository at this point in the history
The jaccard sparse link was pointing to the wrong notebook so I fixed it.
  • Loading branch information
Doug Friedman authored and GitHub committed May 17, 2018
1 parent 63511ee commit 3a74237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_bindings/notebooks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ We have Python notebooks for the following scenarios:
3. [The Euclidean space ofr for 8-bit integer SIFT vectors (the index is not optimized)](search_sift_uint8.ipynb);
4. [KL-divergence (non-optimized index)](search_vector_dense_kldiv.ipynb);
3. [Sparse cosine similarity (non-optimized index)](search_sparse_cosine.ipynb);
4. [Sparse Jaccard similarity (non-optimized index)](search_sparse_cosine.ipynb).
4. [Sparse Jaccard similarity (non-optimized index)](search_generic_sparse_jaccard.ipynb).

Note that for for the dense space, we have examples of the so-called optimized and non-optimized indices. Except HNSW, all the methods save meta-indices rather than real ones. Meta indices contain only index structure, but not the data. Hence, before a meta-index can be loaded, we need to re-load data. One example is a memory efficient space to search for SIFT vectors.

Expand Down

0 comments on commit 3a74237

Please sign in to comment.