usearch 2.20.6__cp38-cp38-musllinux_1_2_aarch64.whl → 2.20.7__cp38-cp38-musllinux_1_2_aarch64.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: usearch
3
- Version: 2.20.6
3
+ Version: 2.20.7
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++ 11</a> •
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">C 99</a> •
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">GoLang</a> •
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 • MacOS • Windows • iOS • Android • WebAssembly •
69
- <a href="https://unum-cloud.github.io/usearch/sqlite">SQLite3</a>
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%20PyPi%20installs"> </a>
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
- <a href="https://central.sonatype.com/artifact/cloud.unum/usearch/overview"> <img alt="Maven" src="https://img.shields.io/nexus/r/cloud.unum/usearch?server=https%3A%2F%2Fs01.oss.sonatype.org%2F&label=Java%20Maven%20version"> </a>
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
- loaded_copy = index.load("index.usearch")
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 | GoLang | Swift |
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] 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).
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
- - [x] Memgraph: [C++ MVP](https://github.com/memgraph/memgraph/pull/2406), [C++ Stable](https://github.com/memgraph/memgraph/pull/2500), [docs](https://memgraph.com/docs/querying/vector-search)
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.6},
587
+ version = {2.20.7},
587
588
  year = {2023},
588
589
  month = oct,
589
590
  }
@@ -1,6 +1,6 @@
1
1
  usearch/__init__.py,sha256=jTm0I7dYLKOC5k3vQ_uodYm1gR8HxbOY5zWvTnrurcU,5954
2
2
  usearch/client.py,sha256=r7Gp4e8V6udeEU1shn7cXVRO42mufD8bsXnHdKACq-o,4137
3
- usearch/compiled.cpython-38-aarch64-linux-gnu.so,sha256=eIwTrINT2-kdBPnOFaYvbKQBWEqgwfi1usw_cDJC8UU,8345833
3
+ usearch/compiled.cpython-38-aarch64-linux-gnu.so,sha256=PH9aI3CrKcgh9zw_ZAgEm7L3SvxgGRkN4F0ECwlXBw4,8345833
4
4
  usearch/eval.py,sha256=3IBDUbyubAZs29djZUcixg0pL7IgvwqDssAEpWY-Qj0,16743
5
5
  usearch/index.py,sha256=WUcDyGSRSZKq1uAK--djtClYni8_V0vVceCxAgmjVFA,61065
6
6
  usearch/io.py,sha256=1U_O4PjKYwpEbTUVfxEDbJvu8SK7k2iDAwOwwoZe1p0,4230
@@ -8,8 +8,8 @@ usearch/numba.py,sha256=qxHLChxggVUhPChnKBwUuFXFRKHx0dcXDHoRyFxkap0,3920
8
8
  usearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  usearch/server.py,sha256=ExEj8Sge6yxXbTbKJMbb5APb1waHaInS52ImNoGAy0I,3679
10
10
  usearch./libgcc_s-2d945d6c.so.1,sha256=dn-5kQf6XkEWhBOx7tnXMZHJQSbDdSYmPhrx8fiYeI8,201673
11
- usearch-2.20.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
12
- usearch-2.20.6.dist-info/METADATA,sha256=lwErroFFNDnbvIDg5WbbezNng3lVOiW8pdLztYFNlGs,33330
13
- usearch-2.20.6.dist-info/WHEEL,sha256=5IfLZziQ1k5alfbJ4c6piZbbfPLFquhjHZRlljY284o,111
14
- usearch-2.20.6.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
15
- usearch-2.20.6.dist-info/RECORD,,
11
+ usearch-2.20.7.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
12
+ usearch-2.20.7.dist-info/METADATA,sha256=EKFpDhE2RcVbnHcFqSZbtvlwREprtxP3XIwtyzMPSS4,32847
13
+ usearch-2.20.7.dist-info/WHEEL,sha256=5IfLZziQ1k5alfbJ4c6piZbbfPLFquhjHZRlljY284o,111
14
+ usearch-2.20.7.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
15
+ usearch-2.20.7.dist-info/RECORD,,