Tagged Questions

2
votes
3answers
245 views

Speeding up levenshtein / similar_text in PHP

I am currently using similar_text to compare a string against a list of ~50,000 which works although due to the number of comparisons it's very slow. It takes around 11 minutes to …
3
votes
5answers
122 views

strategies for finding duplicate mailing addresses

Hello, I'm trying to come up with a method of finding duplicate addresses, based on a similarity score. Consider these duplicate addresses: addr_1 = '# 3 FAIRMONT LINK SOUTH' addr …
0
votes
0answers
22 views

Package to compare LSA, TFIDF, Cosine metrics and Language Models

Hi, I'm looking for a package (any language, really) that I can use on a corpus of 50 documents to perform interdocument similarity testing in various metrics, like tfidf, okapi, …
6
votes
4answers
809 views

Cosine similarity vs Hamming distance

Hello! To compute the similarity between two documents, I create a feature vector containing the term frequencies. But then, for the next step, I can't decide between "Cosine simi …
7
votes
6answers
599 views

Levenshtein distance - how to better handle words swapping positions?

Hi, I've had some success comparing strings using the PHP levenshtein() function. However, for two strings which contain substrings that have swapped positions, the algorithm cou …