Tagged Questions
10
votes
5answers
4k views
Cosine similarity vs Hamming distance
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 similarity" and "Hamming ...
3
votes
5answers
204 views
Figure out if a business name is very similar to another one - Python
I'm working with a large database of businesses.
I'd like to be able to compare two business names for similarity to see if they possibly might be duplicates.
Below is a list of business names that ...
2
votes
1answer
56 views
Python digest/hash for string similarity
I'm looking for an algorithm which can generate a short (fx 16 chars (not important) hashcode/digest from a longer string.
The main requirement is that strings which is almost identical should result ...
2
votes
1answer
580 views
Advice on String Similarity Metrics (Java). Distance, sounds like or combo?
A part of a process requires to apply String Similarity Algorithms.
The results of this process will be stored and produce lets say SS_Dataset.
Based on this Dataset, further decisions will have ...
1
vote
2answers
195 views
Detecting similar words among n text documents
I have n documents and want to find common words that are included in these documents.
For example I want to say (n-3) documents include the word "web".
Certainly I can do this by basic data ...
0
votes
4answers
101 views
How to find strings which are similar to given string in SQL server?
I have a SQL server table which contains several string columns. I need to write an application which gets a string and search for similar strings in SQL server table.
For example, if I give the ...
0
votes
1answer
244 views
simhash like algorithm to compare two text documents
The problem is:
I have a collection of text documents, i want to pick up the most similar one to the input one.
The input text document could be exactly match or modified partly.
The algorithm must be ...
0
votes
4answers
328 views
python search technology: word similarity
I want to get a similarity percentage of two words, eg)
abcd versus zzabcdzz == 50% similarity
Don't need to be very accurate. Is there any way to do that? I am using python but feel free to ...
0
votes
1answer
408 views
Package to compare LSA, TFIDF, Cosine metrics and Language Models
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, language models, lsa, ...