usearch 2.20.6__cp38-cp38-win_amd64.whl → 2.20.7__cp38-cp38-win_amd64.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.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
@@ -52,28 +52,28 @@ Similarity Search & Clustering Engine for <a href="https://github.com/ashvardani
52
52
  <p align="center">
53
53
  Spatial • Binary • Probabilistic • User-Defined Metrics
54
54
  <br/>
55
- <a href="https://unum-cloud.github.io/usearch/cpp">C++ 11</a> •
55
+ <a href="https://unum-cloud.github.io/usearch/cpp">C++11</a> •
56
56
  <a href="https://unum-cloud.github.io/usearch/python">Python 3</a> •
57
57
  <a href="https://unum-cloud.github.io/usearch/javascript">JavaScript</a> •
58
58
  <a href="https://unum-cloud.github.io/usearch/java">Java</a> •
59
59
  <a href="https://unum-cloud.github.io/usearch/rust">Rust</a> •
60
- <a href="https://unum-cloud.github.io/usearch/c">C 99</a> •
60
+ <a href="https://unum-cloud.github.io/usearch/c">C99</a> •
61
61
  <a href="https://unum-cloud.github.io/usearch/objective-c">Objective-C</a> •
62
62
  <a href="https://unum-cloud.github.io/usearch/swift">Swift</a> •
63
63
  <a href="https://unum-cloud.github.io/usearch/csharp">C#</a> •
64
- <a href="https://unum-cloud.github.io/usearch/golang">GoLang</a> •
64
+ <a href="https://unum-cloud.github.io/usearch/golang">Go</a> •
65
65
  <a href="https://unum-cloud.github.io/usearch/wolfram">Wolfram</a>
66
66
  <br/>
67
- Linux • MacOS • Windows • iOS • Android • WebAssembly •
68
- <a href="https://unum-cloud.github.io/usearch/sqlite">SQLite3</a>
67
+ Linux • macOS • Windows • iOS • Android • WebAssembly •
68
+ <a href="https://unum-cloud.github.io/usearch/sqlite">SQLite</a>
69
69
  </p>
70
70
 
71
71
  <div align="center">
72
- <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>
72
+ <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
73
  <a href="https://www.npmjs.com/package/usearch"> <img alt="NPM" src="https://img.shields.io/npm/dy/usearch?label=JavaScript%20NPM%20installs"> </a>
74
74
  <a href="https://crates.io/crates/usearch"> <img alt="Crate" src="https://img.shields.io/crates/d/usearch?label=Rust%20Crate%20installs"> </a>
75
75
  <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>
76
- <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>
76
+ <!-- Maven Central publishing is deprecated for now; fat-JAR download is the supported path. -->
77
77
  <img alt="GitHub code size in bytes" src="https://img.shields.io/github/languages/code-size/unum-cloud/usearch?label=Repo%20size">
78
78
  </div>
79
79
 
@@ -192,7 +192,7 @@ This can result in __20x cost reduction__ on AWS and other public clouds.
192
192
  ```py
193
193
  index.save("index.usearch")
194
194
 
195
- loaded_copy = index.load("index.usearch")
195
+ index.load("index.usearch")
196
196
  view = Index.restore("index.usearch", view=True, ...)
197
197
 
198
198
  other_view = Index(ndim=..., metric=...)
@@ -233,6 +233,8 @@ You can use [Numba][numba], [Cppyy][cppyy], or [PeachPy][peachpy] to define your
233
233
  from numba import cfunc, types, carray
234
234
  from usearch.index import Index, MetricKind, MetricSignature, CompiledMetric
235
235
 
236
+ ndim = 256
237
+
236
238
  @cfunc(types.float32(types.CPointer(types.float32), types.CPointer(types.float32)))
237
239
  def python_inner_product(a, b):
238
240
  a_array = carray(a, ndim)
@@ -384,7 +386,7 @@ By now, the core functionality is supported across all bindings.
384
386
  Broader functionality is ported per request.
385
387
  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.
386
388
 
387
- | | C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust | GoLang | Swift |
389
+ | | C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust | Go | Swift |
388
390
  | :---------------------- | :----: | :------: | :---: | :---: | :--------: | :---: | :----: | :---: |
389
391
  | Add, search, remove | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
390
392
  | Save, load, view | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
@@ -564,15 +566,14 @@ index = Index(ndim=ndim, metric=CompiledMetric(
564
566
  - [x] TiDB & TiFlash: [C++](https://github.com/pingcap/tiflash), [announcement](https://www.pingcap.com/article/introduce-vector-search-indexes-in-tidb/).
565
567
  - [x] YugaByte: [C++](https://github.com/yugabyte/yugabyte-db/blob/366b9f5e3c4df3a1a17d553db41d6dc50146f488/src/yb/vector_index/usearch_wrapper.cc).
566
568
  - [x] Google: [UniSim](https://github.com/google/unisim), [RetSim](https://arxiv.org/abs/2311.17264) paper.
567
- - [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
+ - [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).
568
570
  - [x] LanternDB: [C++](https://github.com/lanterndata/lantern), [Rust](https://github.com/lanterndata/lantern_extras), [docs](https://lantern.dev/blog/hnsw-index-creation).
569
571
  - [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).
570
572
  - [x] Microsoft Semantic Kernel: [Python](https://github.com/microsoft/semantic-kernel/releases/tag/python-0.3.9.dev) and C#.
571
573
  - [x] GPTCache: [Python](https://github.com/zilliztech/GPTCache/releases/tag/0.1.29).
572
574
  - [x] Sentence-Transformers: Python [docs](https://www.sbert.net/docs/package_reference/quantization.html#sentence_transformers.quantization.semantic_search_usearch).
573
575
  - [x] Pathway: [Rust](https://github.com/pathwaycom/pathway).
574
- - [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)
575
- - [x] TiDB: [C++](https://github.com/pingcap/tiflash/pull/9486), [docs](https://docs.pingcap.com/tidb/stable/vector-search-index#vector-search-index)
576
+
576
577
 
577
578
  ## Citations
578
579
 
@@ -582,7 +583,7 @@ doi = {10.5281/zenodo.7949416},
582
583
  author = {Vardanian, Ash},
583
584
  title = {{USearch by Unum Cloud}},
584
585
  url = {https://github.com/unum-cloud/usearch},
585
- version = {2.20.6},
586
+ version = {2.20.7},
586
587
  year = {2023},
587
588
  month = oct,
588
589
  }
@@ -1,14 +1,14 @@
1
1
  usearch/__init__.py,sha256=kiJBSxFuFZIX_Kb4F5fOLBk3dmN6wLY1q5ImKekT7A0,6106
2
2
  usearch/client.py,sha256=igsprFJ2vR2mF59vJonz3PgMfHUTps1aQc0bHmoFaDQ,4257
3
- usearch/compiled.cp38-win_amd64.pyd,sha256=DAfCDEMTs_02YBrEVP_WqEjdmB9UNL5iSyYuhp9KKro,608768
3
+ usearch/compiled.cp38-win_amd64.pyd,sha256=JBf6riwopQoDoZwIb5y0bIyV70A3YkS2-iqBDcFd_YA,608768
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/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
11
- usearch-2.20.6.dist-info/METADATA,sha256=KZUKaT-FZMu_ji6iqIxbDgPCFqlOp3wFWefAzQXVRTc,33882
12
- usearch-2.20.6.dist-info/WHEEL,sha256=2M046GvC9RLU1f1TWyM-2sB7cRKLhAC7ucAFK8l8f24,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.7.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
11
+ usearch-2.20.7.dist-info/METADATA,sha256=d9exFBr64NhjuxsggvUxJOjtfyWgMKZHmrCxLl8lQeg,33400
12
+ usearch-2.20.7.dist-info/WHEEL,sha256=2M046GvC9RLU1f1TWyM-2sB7cRKLhAC7ucAFK8l8f24,99
13
+ usearch-2.20.7.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
14
+ usearch-2.20.7.dist-info/RECORD,,