From 3f69c9405f832f1468bf5bdcfc4da9471f507583 Mon Sep 17 00:00:00 2001 From: Yusuke Matsui Date: Thu, 14 Sep 2023 00:06:08 +0900 Subject: [PATCH] updated version to v0.2.0 --- README.md | 3 +++ nanopq/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a9310c..d28a38c 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,11 @@ dists = pq.dtable(query).adist(X_code) # (10000, ) - [Yusuke Matsui](http://yusukematsui.me) ## Contributors +- [@Hiroshiba](https://github.com/Hiroshiba) fixed a bug of importlib ([#3](https://github.com/matsui528/nanopq/pull/3)) - [@calvinmccarter](https://github.com/calvinmccarter) implemented parametric initialization for OPQ ([#14](https://github.com/matsui528/nanopq/pull/14)) - [@de9uch1](https://github.com/de9uch1) exntended the interface to the faiss so that OPQ can be handled ([#19](https://github.com/matsui528/nanopq/pull/19)) +- [@mpskex](https://github.com/mpskex) implemented (1) initialization of clustering and (2) dot-product for computation ([#24](https://github.com/matsui528/nanopq/pull/24)) +- [@lsb](https://github.com/lsb) fixed a typo ([#26](https://github.com/matsui528/nanopq/pull/26)) ## Reference diff --git a/nanopq/__init__.py b/nanopq/__init__.py index 636e565..37b70ef 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.11" +__version__ = "0.2.0" from .convert_faiss import faiss_to_nanopq, nanopq_to_faiss from .opq import OPQ