diff --git a/HISTORY.md b/HISTORY.md index d5d7075..25d743c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +## 2.14.2 + +* use the npy mapping in all cases for ivf reordering since it's fast enough + ## 2.14.1 * save ivf_old_to_new_mapping for the text index to use diff --git a/front/package.json b/front/package.json index 4f18eba..8c8fd89 100644 --- a/front/package.json +++ b/front/package.json @@ -1,6 +1,6 @@ { "name": "clip-retrieval-front", - "version": "2.14.1", + "version": "2.14.2", "description": "Easily compute clip embeddings and build a clip retrieval system with them. 100M text+image embeddings can be processed in 20h using a 3080.", "main": "server.js", "dependencies": { diff --git a/setup.py b/setup.py index 3798df5..a231477 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ name = 'clip_retrieval', packages = find_packages(), include_package_data = True, - version = '2.14.1', + version = '2.14.2', license='MIT', description = 'Easily computing clip embeddings and building a clip retrieval system with them', long_description=long_description,