diff --git a/HISTORY.md b/HISTORY.md index 746d3ea..3a3f8a4 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +## 2.14.0 + +* implement ivf re-ordering for much faster metadata fetching +* add download button in front + ## 2.13.1 * fix filterDuplicateUrls issue when there is no url, only images diff --git a/front/package.json b/front/package.json index c89c04a..97cee5e 100644 --- a/front/package.json +++ b/front/package.json @@ -1,6 +1,6 @@ { "name": "clip-retrieval-front", - "version": "2.13.1", + "version": "2.14.0", "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 ab2dfd2..13bfcad 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ name = 'clip_retrieval', packages = find_packages(), include_package_data = True, - version = '2.13.1', + version = '2.14.0', license='MIT', description = 'Easily computing clip embeddings and building a clip retrieval system with them', long_description=long_description,