horapy
1.0.0
[หน้าแรก] [เอกสาร] [ตัวอย่าง] [Hora]
Python เชื่อมโยงสำหรับ Hora Approximate Nearest Neighbor Search
นักแสดง ⚡️
รองรับหลายดัชนี
Hierarchical Navigable Small World Graph Index(HNSWIndex)
(รายละเอียด)Satellite System Graph (SSGIndex)
(รายละเอียด)Product Quantization Inverted File(PQIVFIndex)
(รายละเอียด)Random Projection Tree(RPTIndex)
(LSH, WIP)BruteForce (BruteForceIndex)
(การใช้งานที่ไร้เดียงสากับ SIMD)แบบพกพา
no_std
(WIP บางส่วน)Windows
, Linux
และ OS X
IOS
และ Android
(WIP)BLAS
ความน่าเชื่อถือ
Rust
รักษาความปลอดภัยโค้ดทั้งหมดRust
รองรับหลายระยะทาง ?
Dot Product Distance
Euclidean Distance
Manhattan Distance
Cosine Similarity
มีประสิทธิผล
โดย aws t2.medium (CPU: Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz)
ข้อมูลเพิ่มเติม
pip install horapy
import numpy as np
from horapy import HNSWIndex
dimension = 50
n = 1000
# init index instance
index = HNSWIndex ( dimension , "usize" )
samples = np . float32 ( np . random . rand ( n , dimension ))
for i in range ( 0 , len ( samples )):
# add node
index . add ( np . float32 ( samples [ i ]), i )
index . build ( "euclidean" ) # build index
target = np . random . randint ( 0 , n )
# 410 in Hora ANNIndex <HNSWIndexUsize> (dimension: 50, dtype: usize, max_item: 1000000, n_neigh: 32, n_neigh0: 64, ef_build: 20, ef_search: 500, has_deletion: False)
# has neighbors: [410, 736, 65, 36, 631, 83, 111, 254, 990, 161]
print ( "{} in {} n has neighbors: {}" . format (
target , index , index . search ( samples [ target ], 10 ))) # search
repo ทั้งหมดอยู่ภายใต้ Apache License