usearch 2.20.6__cp39-cp39-win_arm64.whl → 2.20.9__cp39-cp39-win_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.

Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: usearch
3
- Version: 2.20.6
3
+ Version: 2.20.9
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
@@ -62,28 +62,28 @@ Similarity Search & Clustering Engine for <a href="https://github.com/ashvardani
62
62
  <p align="center">
63
63
  Spatial • Binary • Probabilistic • User-Defined Metrics
64
64
  <br/>
65
- <a href="https://unum-cloud.github.io/usearch/cpp">C++ 11</a> •
65
+ <a href="https://unum-cloud.github.io/usearch/cpp">C++11</a> •
66
66
  <a href="https://unum-cloud.github.io/usearch/python">Python 3</a> •
67
67
  <a href="https://unum-cloud.github.io/usearch/javascript">JavaScript</a> •
68
68
  <a href="https://unum-cloud.github.io/usearch/java">Java</a> •
69
69
  <a href="https://unum-cloud.github.io/usearch/rust">Rust</a> •
70
- <a href="https://unum-cloud.github.io/usearch/c">C 99</a> •
70
+ <a href="https://unum-cloud.github.io/usearch/c">C99</a> •
71
71
  <a href="https://unum-cloud.github.io/usearch/objective-c">Objective-C</a> •
72
72
  <a href="https://unum-cloud.github.io/usearch/swift">Swift</a> •
73
73
  <a href="https://unum-cloud.github.io/usearch/csharp">C#</a> •
74
- <a href="https://unum-cloud.github.io/usearch/golang">GoLang</a> •
74
+ <a href="https://unum-cloud.github.io/usearch/golang">Go</a> •
75
75
  <a href="https://unum-cloud.github.io/usearch/wolfram">Wolfram</a>
76
76
  <br/>
77
- Linux • MacOS • Windows • iOS • Android • WebAssembly •
78
- <a href="https://unum-cloud.github.io/usearch/sqlite">SQLite3</a>
77
+ Linux • macOS • Windows • iOS • Android • WebAssembly •
78
+ <a href="https://unum-cloud.github.io/usearch/sqlite">SQLite</a>
79
79
  </p>
80
80
 
81
81
  <div align="center">
82
- <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>
82
+ <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>
83
83
  <a href="https://www.npmjs.com/package/usearch"> <img alt="NPM" src="https://img.shields.io/npm/dy/usearch?label=JavaScript%20NPM%20installs"> </a>
84
84
  <a href="https://crates.io/crates/usearch"> <img alt="Crate" src="https://img.shields.io/crates/d/usearch?label=Rust%20Crate%20installs"> </a>
85
85
  <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>
86
- <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>
86
+ <!-- Maven Central publishing is deprecated for now; fat-JAR download is the supported path. -->
87
87
  <img alt="GitHub code size in bytes" src="https://img.shields.io/github/languages/code-size/unum-cloud/usearch?label=Repo%20size">
88
88
  </div>
89
89
 
@@ -202,7 +202,7 @@ This can result in __20x cost reduction__ on AWS and other public clouds.
202
202
  ```py
203
203
  index.save("index.usearch")
204
204
 
205
- loaded_copy = index.load("index.usearch")
205
+ index.load("index.usearch")
206
206
  view = Index.restore("index.usearch", view=True, ...)
207
207
 
208
208
  other_view = Index(ndim=..., metric=...)
@@ -243,6 +243,8 @@ You can use [Numba][numba], [Cppyy][cppyy], or [PeachPy][peachpy] to define your
243
243
  from numba import cfunc, types, carray
244
244
  from usearch.index import Index, MetricKind, MetricSignature, CompiledMetric
245
245
 
246
+ ndim = 256
247
+
246
248
  @cfunc(types.float32(types.CPointer(types.float32), types.CPointer(types.float32)))
247
249
  def python_inner_product(a, b):
248
250
  a_array = carray(a, ndim)
@@ -394,7 +396,7 @@ By now, the core functionality is supported across all bindings.
394
396
  Broader functionality is ported per request.
395
397
  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.
396
398
 
397
- | | C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust | GoLang | Swift |
399
+ | | C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust | Go | Swift |
398
400
  | :---------------------- | :----: | :------: | :---: | :---: | :--------: | :---: | :----: | :---: |
399
401
  | Add, search, remove | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
400
402
  | Save, load, view | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
@@ -574,15 +576,14 @@ index = Index(ndim=ndim, metric=CompiledMetric(
574
576
  - [x] TiDB & TiFlash: [C++](https://github.com/pingcap/tiflash), [announcement](https://www.pingcap.com/article/introduce-vector-search-indexes-in-tidb/).
575
577
  - [x] YugaByte: [C++](https://github.com/yugabyte/yugabyte-db/blob/366b9f5e3c4df3a1a17d553db41d6dc50146f488/src/yb/vector_index/usearch_wrapper.cc).
576
578
  - [x] Google: [UniSim](https://github.com/google/unisim), [RetSim](https://arxiv.org/abs/2311.17264) paper.
577
- - [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).
579
+ - [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).
578
580
  - [x] LanternDB: [C++](https://github.com/lanterndata/lantern), [Rust](https://github.com/lanterndata/lantern_extras), [docs](https://lantern.dev/blog/hnsw-index-creation).
579
581
  - [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).
580
582
  - [x] Microsoft Semantic Kernel: [Python](https://github.com/microsoft/semantic-kernel/releases/tag/python-0.3.9.dev) and C#.
581
583
  - [x] GPTCache: [Python](https://github.com/zilliztech/GPTCache/releases/tag/0.1.29).
582
584
  - [x] Sentence-Transformers: Python [docs](https://www.sbert.net/docs/package_reference/quantization.html#sentence_transformers.quantization.semantic_search_usearch).
583
585
  - [x] Pathway: [Rust](https://github.com/pathwaycom/pathway).
584
- - [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)
585
- - [x] TiDB: [C++](https://github.com/pingcap/tiflash/pull/9486), [docs](https://docs.pingcap.com/tidb/stable/vector-search-index#vector-search-index)
586
+
586
587
 
587
588
  ## Citations
588
589
 
@@ -592,7 +593,7 @@ doi = {10.5281/zenodo.7949416},
592
593
  author = {Vardanian, Ash},
593
594
  title = {{USearch by Unum Cloud}},
594
595
  url = {https://github.com/unum-cloud/usearch},
595
- version = {2.20.6},
596
+ version = {2.20.9},
596
597
  year = {2023},
597
598
  month = oct,
598
599
  }
@@ -1,14 +1,14 @@
1
1
  usearch/__init__.py,sha256=kiJBSxFuFZIX_Kb4F5fOLBk3dmN6wLY1q5ImKekT7A0,6106
2
2
  usearch/client.py,sha256=igsprFJ2vR2mF59vJonz3PgMfHUTps1aQc0bHmoFaDQ,4257
3
- usearch/compiled.cp39-win_arm64.pyd,sha256=xTwR2VZX5n_Cn-NCeWL6hvOAXhWr79uA6QWApEU8VDk,662016
3
+ usearch/compiled.cp39-win_arm64.pyd,sha256=VItdU-em2uTQtcpTZf-44EVvFjd3q_LYIIVVBTOoTFw,662016
4
4
  usearch/eval.py,sha256=yCS55-6YbyW4zIF_cdUwueJ-IqXTtO97T7UQyPHk_BQ,17255
5
5
  usearch/index.py,sha256=p08nG_99Hnz11JVCujc_ER_WW0nRP5FEgFihbDHAS1I,62775
6
6
  usearch/io.py,sha256=NFUgikU6mhwNFERu005l6aisy61g-13LKfqmlrZD3BI,4368
7
7
  usearch/numba.py,sha256=c85D3OHBrgDh9bnC_zvm9GxZ1J_8r3g7xqLRZP8QslY,4030
8
8
  usearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  usearch/server.py,sha256=LQ-osWm_VlNFbrDgGk1FhL1MNpOq_7GsW0g341ViJEE,3810
10
- usearch-2.20.6.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
11
- usearch-2.20.6.dist-info/METADATA,sha256=Hz_B1slWC9AbDxPlAaFXfZv068C3bTOGDA4K34ehmeI,34103
12
- usearch-2.20.6.dist-info/WHEEL,sha256=YAxRLiZl37bQf-KDOzxK44fDGobYtLXqUWtoDXKKYuE,99
13
- usearch-2.20.6.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
14
- usearch-2.20.6.dist-info/RECORD,,
10
+ usearch-2.20.9.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
11
+ usearch-2.20.9.dist-info/METADATA,sha256=ECTFIV9vbw3M9Lpsc_UC_B3W59uQfG3ipepDJ8WdBEo,33621
12
+ usearch-2.20.9.dist-info/WHEEL,sha256=YAxRLiZl37bQf-KDOzxK44fDGobYtLXqUWtoDXKKYuE,99
13
+ usearch-2.20.9.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
14
+ usearch-2.20.9.dist-info/RECORD,,