From 9ea4589af5243fd6c2a8368e10a9a0111a776bea Mon Sep 17 00:00:00 2001 From: Yusuke Matsui Date: Mon, 3 Jan 2022 23:24:36 +0900 Subject: [PATCH] updated to v0.1.10 --- README.md | 3 +++ nanopq/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 55112af..5b12464 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,9 @@ dists = pq.dtable(query).adist(X_code) # (10000, ) ## Author - [Yusuke Matsui](http://yusukematsui.me) +## Contributors +- [@calvinmccarter](https://github.com/calvinmccarter) implemented parametric initialization for OPQ ([#14](https://github.com/matsui528/nanopq/pull/14)) + ## Reference - [H. Jegou, M. Douze, and C. Schmid, "Product Quantization for Nearest Neighbor Search", IEEE TPAMI 2011](https://ieeexplore.ieee.org/document/5432202/) (the original paper of PQ) diff --git a/nanopq/__init__.py b/nanopq/__init__.py index f7634ad..df71855 100644 --- a/nanopq/__init__.py +++ b/nanopq/__init__.py @@ -1,5 +1,5 @@ __all__ = ["PQ", "OPQ", "DistanceTable", "nanopq_to_faiss", "faiss_to_nanopq"] -__version__ = "0.1.9" +__version__ = "0.1.10" from .convert_faiss import faiss_to_nanopq, nanopq_to_faiss from .opq import OPQ