usearch 2.20.6__cp38-cp38-macosx_11_0_arm64.whl → 2.20.8__cp38-cp38-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of usearch might be problematic. Click here for more details.
- usearch/compiled.cpython-38-darwin.so +0 -0
- {usearch-2.20.6.dist-info → usearch-2.20.8.dist-info}/METADATA +15 -14
- {usearch-2.20.6.dist-info → usearch-2.20.8.dist-info}/RECORD +6 -6
- {usearch-2.20.6.dist-info → usearch-2.20.8.dist-info}/LICENSE +0 -0
- {usearch-2.20.6.dist-info → usearch-2.20.8.dist-info}/WHEEL +0 -0
- {usearch-2.20.6.dist-info → usearch-2.20.8.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: usearch
|
|
3
|
-
Version: 2.20.
|
|
3
|
+
Version: 2.20.8
|
|
4
4
|
Summary: Smaller & Faster Single-File Vector Search Engine from Unum
|
|
5
5
|
Home-page: https://github.com/unum-cloud/usearch
|
|
6
6
|
Author: Ash Vardanian
|
|
@@ -53,28 +53,28 @@ Similarity Search & Clustering Engine for <a href="https://github.com/ashvardani
|
|
|
53
53
|
<p align="center">
|
|
54
54
|
Spatial • Binary • Probabilistic • User-Defined Metrics
|
|
55
55
|
<br/>
|
|
56
|
-
<a href="https://unum-cloud.github.io/usearch/cpp">C++
|
|
56
|
+
<a href="https://unum-cloud.github.io/usearch/cpp">C++11</a> •
|
|
57
57
|
<a href="https://unum-cloud.github.io/usearch/python">Python 3</a> •
|
|
58
58
|
<a href="https://unum-cloud.github.io/usearch/javascript">JavaScript</a> •
|
|
59
59
|
<a href="https://unum-cloud.github.io/usearch/java">Java</a> •
|
|
60
60
|
<a href="https://unum-cloud.github.io/usearch/rust">Rust</a> •
|
|
61
|
-
<a href="https://unum-cloud.github.io/usearch/c">
|
|
61
|
+
<a href="https://unum-cloud.github.io/usearch/c">C99</a> •
|
|
62
62
|
<a href="https://unum-cloud.github.io/usearch/objective-c">Objective-C</a> •
|
|
63
63
|
<a href="https://unum-cloud.github.io/usearch/swift">Swift</a> •
|
|
64
64
|
<a href="https://unum-cloud.github.io/usearch/csharp">C#</a> •
|
|
65
|
-
<a href="https://unum-cloud.github.io/usearch/golang">
|
|
65
|
+
<a href="https://unum-cloud.github.io/usearch/golang">Go</a> •
|
|
66
66
|
<a href="https://unum-cloud.github.io/usearch/wolfram">Wolfram</a>
|
|
67
67
|
<br/>
|
|
68
|
-
Linux •
|
|
69
|
-
<a href="https://unum-cloud.github.io/usearch/sqlite">
|
|
68
|
+
Linux • macOS • Windows • iOS • Android • WebAssembly •
|
|
69
|
+
<a href="https://unum-cloud.github.io/usearch/sqlite">SQLite</a>
|
|
70
70
|
</p>
|
|
71
71
|
|
|
72
72
|
<div align="center">
|
|
73
|
-
<a href="https://pepy.tech/project/usearch"> <img alt="PyPI" src="https://static.pepy.tech/personalized-badge/usearch?period=total&units=abbreviation&left_color=black&right_color=blue&left_text=Python%
|
|
73
|
+
<a href="https://pepy.tech/project/usearch"> <img alt="PyPI" src="https://static.pepy.tech/personalized-badge/usearch?period=total&units=abbreviation&left_color=black&right_color=blue&left_text=Python%20PyPI%20installs"> </a>
|
|
74
74
|
<a href="https://www.npmjs.com/package/usearch"> <img alt="NPM" src="https://img.shields.io/npm/dy/usearch?label=JavaScript%20NPM%20installs"> </a>
|
|
75
75
|
<a href="https://crates.io/crates/usearch"> <img alt="Crate" src="https://img.shields.io/crates/d/usearch?label=Rust%20Crate%20installs"> </a>
|
|
76
76
|
<a href="https://www.nuget.org/packages/Cloud.Unum.USearch"> <img alt="NuGet" src="https://img.shields.io/nuget/dt/Cloud.Unum.USearch?label=CSharp%20NuGet%20installs"> </a>
|
|
77
|
-
|
|
77
|
+
<!-- Maven Central publishing is deprecated for now; fat-JAR download is the supported path. -->
|
|
78
78
|
<img alt="GitHub code size in bytes" src="https://img.shields.io/github/languages/code-size/unum-cloud/usearch?label=Repo%20size">
|
|
79
79
|
</div>
|
|
80
80
|
|
|
@@ -193,7 +193,7 @@ This can result in __20x cost reduction__ on AWS and other public clouds.
|
|
|
193
193
|
```py
|
|
194
194
|
index.save("index.usearch")
|
|
195
195
|
|
|
196
|
-
|
|
196
|
+
index.load("index.usearch")
|
|
197
197
|
view = Index.restore("index.usearch", view=True, ...)
|
|
198
198
|
|
|
199
199
|
other_view = Index(ndim=..., metric=...)
|
|
@@ -234,6 +234,8 @@ You can use [Numba][numba], [Cppyy][cppyy], or [PeachPy][peachpy] to define your
|
|
|
234
234
|
from numba import cfunc, types, carray
|
|
235
235
|
from usearch.index import Index, MetricKind, MetricSignature, CompiledMetric
|
|
236
236
|
|
|
237
|
+
ndim = 256
|
|
238
|
+
|
|
237
239
|
@cfunc(types.float32(types.CPointer(types.float32), types.CPointer(types.float32)))
|
|
238
240
|
def python_inner_product(a, b):
|
|
239
241
|
a_array = carray(a, ndim)
|
|
@@ -385,7 +387,7 @@ By now, the core functionality is supported across all bindings.
|
|
|
385
387
|
Broader functionality is ported per request.
|
|
386
388
|
In some cases, like Batch operations, feature parity is meaningless, as the host language has full multi-threading capabilities and the USearch index structure is concurrent by design, so the users can implement batching/scheduling/load-balancing in the most optimal way for their applications.
|
|
387
389
|
|
|
388
|
-
| | C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust |
|
|
390
|
+
| | C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust | Go | Swift |
|
|
389
391
|
| :---------------------- | :----: | :------: | :---: | :---: | :--------: | :---: | :----: | :---: |
|
|
390
392
|
| Add, search, remove | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
391
393
|
| Save, load, view | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
@@ -565,15 +567,14 @@ index = Index(ndim=ndim, metric=CompiledMetric(
|
|
|
565
567
|
- [x] TiDB & TiFlash: [C++](https://github.com/pingcap/tiflash), [announcement](https://www.pingcap.com/article/introduce-vector-search-indexes-in-tidb/).
|
|
566
568
|
- [x] YugaByte: [C++](https://github.com/yugabyte/yugabyte-db/blob/366b9f5e3c4df3a1a17d553db41d6dc50146f488/src/yb/vector_index/usearch_wrapper.cc).
|
|
567
569
|
- [x] Google: [UniSim](https://github.com/google/unisim), [RetSim](https://arxiv.org/abs/2311.17264) paper.
|
|
568
|
-
- [x]
|
|
570
|
+
- [x] Memgraph: [C++](https://github.com/memgraph/memgraph/blob/784dd8520f65050d033aea8b29446e84e487d091/src/storage/v2/indices/vector_index.cpp), [announcement](https://memgraph.com/blog/simplify-data-retrieval-memgraph-vector-search).
|
|
569
571
|
- [x] LanternDB: [C++](https://github.com/lanterndata/lantern), [Rust](https://github.com/lanterndata/lantern_extras), [docs](https://lantern.dev/blog/hnsw-index-creation).
|
|
570
572
|
- [x] LangChain: [Python](https://github.com/langchain-ai/langchain/releases/tag/v0.0.257) and [JavaScript](https://github.com/hwchase17/langchainjs/releases/tag/0.0.125).
|
|
571
573
|
- [x] Microsoft Semantic Kernel: [Python](https://github.com/microsoft/semantic-kernel/releases/tag/python-0.3.9.dev) and C#.
|
|
572
574
|
- [x] GPTCache: [Python](https://github.com/zilliztech/GPTCache/releases/tag/0.1.29).
|
|
573
575
|
- [x] Sentence-Transformers: Python [docs](https://www.sbert.net/docs/package_reference/quantization.html#sentence_transformers.quantization.semantic_search_usearch).
|
|
574
576
|
- [x] Pathway: [Rust](https://github.com/pathwaycom/pathway).
|
|
575
|
-
|
|
576
|
-
- [x] TiDB: [C++](https://github.com/pingcap/tiflash/pull/9486), [docs](https://docs.pingcap.com/tidb/stable/vector-search-index#vector-search-index)
|
|
577
|
+
|
|
577
578
|
|
|
578
579
|
## Citations
|
|
579
580
|
|
|
@@ -583,7 +584,7 @@ doi = {10.5281/zenodo.7949416},
|
|
|
583
584
|
author = {Vardanian, Ash},
|
|
584
585
|
title = {{USearch by Unum Cloud}},
|
|
585
586
|
url = {https://github.com/unum-cloud/usearch},
|
|
586
|
-
version = {2.20.
|
|
587
|
+
version = {2.20.8},
|
|
587
588
|
year = {2023},
|
|
588
589
|
month = oct,
|
|
589
590
|
}
|
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
usearch-2.20.6.dist-info/RECORD,,
|
|
2
|
-
usearch-2.20.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
3
|
-
usearch-2.20.6.dist-info/WHEEL,sha256=9FabR3Kab7Nb3lO5nBQWtZc544XJ0hYCmiQC2RH2bHM,107
|
|
4
|
-
usearch-2.20.6.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
|
|
5
|
-
usearch-2.20.6.dist-info/METADATA,sha256=lwErroFFNDnbvIDg5WbbezNng3lVOiW8pdLztYFNlGs,33330
|
|
6
1
|
usearch/server.py,sha256=ExEj8Sge6yxXbTbKJMbb5APb1waHaInS52ImNoGAy0I,3679
|
|
7
|
-
usearch/compiled.cpython-38-darwin.so,sha256=
|
|
2
|
+
usearch/compiled.cpython-38-darwin.so,sha256=Iccx7Cc9mAd_jZH6kdqDwDjoXooFYP0I_nifi7VyTiE,1265088
|
|
8
3
|
usearch/index.py,sha256=WUcDyGSRSZKq1uAK--djtClYni8_V0vVceCxAgmjVFA,61065
|
|
9
4
|
usearch/numba.py,sha256=qxHLChxggVUhPChnKBwUuFXFRKHx0dcXDHoRyFxkap0,3920
|
|
10
5
|
usearch/client.py,sha256=r7Gp4e8V6udeEU1shn7cXVRO42mufD8bsXnHdKACq-o,4137
|
|
@@ -12,3 +7,8 @@ usearch/io.py,sha256=1U_O4PjKYwpEbTUVfxEDbJvu8SK7k2iDAwOwwoZe1p0,4230
|
|
|
12
7
|
usearch/__init__.py,sha256=jTm0I7dYLKOC5k3vQ_uodYm1gR8HxbOY5zWvTnrurcU,5954
|
|
13
8
|
usearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
9
|
usearch/eval.py,sha256=3IBDUbyubAZs29djZUcixg0pL7IgvwqDssAEpWY-Qj0,16743
|
|
10
|
+
usearch-2.20.8.dist-info/RECORD,,
|
|
11
|
+
usearch-2.20.8.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
12
|
+
usearch-2.20.8.dist-info/WHEEL,sha256=9FabR3Kab7Nb3lO5nBQWtZc544XJ0hYCmiQC2RH2bHM,107
|
|
13
|
+
usearch-2.20.8.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
|
|
14
|
+
usearch-2.20.8.dist-info/METADATA,sha256=7YO1rxrWI6VAHBkENMV1dnOv8duvtf-m3oOHFHaoyhU,32847
|
|
File without changes
|
|
File without changes
|
|
File without changes
|