A Python implementation of Locality Sensitive Hashing for finding nearest neighbors and clusters in multidimensional numerical data
Project description
Consult the module API page at
https://engineering.purdue.edu/kak/distLSH/LocalitySensitiveHashing-1.0.html
for all information related to this module, including information regarding the latest changes to the code. The page at the URL shown above lists all of the module functionality you can invoke in your own code.
Locality Sensitive Hashing (LSH) is a computationally efficient approach for finding nearest neighbors in large datasets. The main idea in LSH is to avoid having to compare every pair of data samples in a large dataset in order to find the nearest similar neighbors for the different data samples. With LSH, one can expect a data sample and its closest similar neighbors to be hashed into the same bucket with a high probability. By treating the data samples placed in the same bucket as candidates for similarity checking, we significantly reduce the computational burden associated with similarity detection in large datasets.
While LSH algorithms have traditionally been used for finding nearest neighbors, this module goes a step further and explores using LSH for clustering the data. Strictly speaking, this violates the basic mandate of LSH, which is to return just the nearest neighbors. (A being a nearest neighbor of B and B being a nearest neighbor of C, in the sense such nearest neighbors are defined in the context of LSH, does not imply that A and C will always be sufficiently close to be considered similar.) Nonetheless, if you believe that your datafile consists of non-overlapping data clusters, this module may do a decent job of finding those clusters.
Typical usage syntax for invoking LocalitySensitiveHashing in your own code:
from LocalitySensitiveHashing import * datafile = "data_for_lsh.csv" lsh = LocalitySensitiveHashing( datafile = datafile, dim = 10, r = 50, b = 100, expected_num_of_clusters = 10, ) lsh.get_data_from_csv() lsh.initialize_hash_store() lsh.hash_all_data() similarity_groups = lsh.lsh_basic_for_neighborhood_clusters() coalesced_similarity_groups = lsh.merge_similarity_groups_with_coalescence( similarity_groups ) merged_similarity_groups = lsh.merge_similarity_groups_with_l2norm_sample_based( coalesced_similarity_groups ) lsh.write_clusters_to_file( merged_similarity_groups, "clusters.txt" )
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for LocalitySensitiveHashing-1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20b5f1f947930e92c4e3c3d74a1521a4e4ef77b2981e33744db014b3e7ea484e |
|
MD5 | 22057425f52f7ad352af30256ad0a2db |
|
BLAKE2b-256 | d0f9b9c322d0fc0c11cf46f3cb78ed960530a013e18f28f1c67c4effbb6c25ed |