Tagged Questions
The string-similarity tag has no wiki summary.
17
votes
4answers
229 views
what is a good metric for deciding if 2 Strings are “similar enough”
I'm working on a very rough, first-draft algorithm to determine how similar 2 Strings are. I'm also using Levenshtein Distance to calculate the edit distance between the Strings.
What I'm doing ...
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 ...
10
votes
9answers
2k views
Levenshtein distance: how to better handle words swapping positions?
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 counts those as whole new ...
9
votes
7answers
2k views
Comparing strings with tolerance
I'm looking for a way to compare a string with an array of strings. Doing an exact search is quite easy of course, but I want my program to tolerate spelling mistakes, missing parts of the string and ...
8
votes
4answers
598 views
how to compute similarity between two strings in MYSQL
if i have two strings in mysql:
@a="Welcome to Stack Overflow"
@b=" Hello to stack overflow";
is there a way to get the similarity percentage between those two string using MYSQL?
here for example ...
7
votes
4answers
1k views
Text similarity algorithm
I have two subtitles files.
I need a function that tells whether they represent the same text, or the similar text
Sometimes there are comments like "The wind is blowing... the music is playing" in ...
5
votes
6answers
402 views
How to find a similar word for a misspelled one in PHP?
I'll explain my problem:
I have a database table called country. It has two columns: ID and name.
When I want to search for 'paris', but misspelled the word: 'pares' ('e' instead of 'i'), I won't ...
4
votes
9answers
702 views
String similarity score/hash
Is there a method to calculate something like general "similarity score" of a string? In a way that I am not comparing two strings together but rather I get some number (hash) for each string that can ...
4
votes
3answers
280 views
How can I find out if two strings are mostly equal (in perl)?
I have a string that I want to compare against an array of strings, and return the array element that most closely matches.
I can write a sliding correlator that counts the number of matching ...
4
votes
6answers
590 views
strategies for finding duplicate mailing addresses
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_2 = '3 FAIRMONT LINK S'
...
3
votes
1answer
67 views
Finding duplicate books
I have a number of list of book's name along with their authors(no ISBN number). I want to maintain a single list containing unique entries of books and remove the duplicate entries of every book.
...
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 ...
3
votes
3answers
73 views
Finding Likelihood of Plagiarism in Multiple Entries using PHP
I am working on a web application that tracks helpdesk entries. We want to find a way to prevent people from copying and pasting their notes regarding common issues - we want original helpdesk ...
3
votes
2answers
522 views
String similarity in PHP: levenshtein like function for long strings
The function levenshtein in PHP works on strings with maximum length 255. What are good alternatives to compute a similarity score of sentences in PHP.
Basically I have a database of sentences, ...
3
votes
2answers
136 views
Calculating similarites between sentences
I have datbase with thousands of rows of error logs and their description.This error log is for an application that running 24/7. I want to create a dashboard/UI to view the current common errors ...
3
votes
6answers
1k views
Percentage Similarity Analysis (Java)
I have following situation:
String a = "A Web crawler is a computer program that browses the World Wide Web internet automatically";
String b = "Web Crawler computer program browses the World Wide ...
3
votes
3answers
1k 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 compare ~500 unique ...
2
votes
1answer
53 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
79 views
Algorithm to find edit distance to all substrings
Given 2 strings s and t. I need to find for each substring in s edit distance(Levenshtein distance) to t. Actually I need to know for each i position in s what is the minimum edit distance for all ...
2
votes
1answer
94 views
How to get related words using google?
I need to find related words for a given word. I know that there several applications exist but they work only with English words. I need it to work with other languages also (in my case Spanish ...
2
votes
2answers
111 views
MySQL function for checking similarity percentage between two texts
I need MySQL code for checking similarity percentage between text submitted via form against a number of texts stored in MySQL database.
I am looking for MySQL stored procedure that will work the ...
2
votes
2answers
113 views
R: Search for string SIMILAR and return with conditional symbol
My df has following entries:
A
xxx
xxx
xxx1
xx1x
yyyy
gggg
I want to add symbols to a column B of my df based on the similarity of column A, based on the following conditions.
I set the ...
2
votes
2answers
479 views
Method to find similar substrings from two strings
I'm using this piece of Java code to find similar strings:
if( str1.indexof(str2) >= 0 || str2.indexof(str1) >= 0 ) .......
but With str1 = "pizzabase" and str2 = "namedpizzaowl" it doesn't ...
2
votes
1answer
415 views
Is there a way to filter a django queryset based on string similarity (a la python difflib)?
I have a need to match cold leads against a database of our clients.
The leads come from a third party provider in bulk (thousands of records) and sales is asking us to (in their words) "filter out ...
2
votes
1answer
579 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 ...
2
votes
3answers
820 views
Text similarity function for strict document similarity
I'm writing a piece of java software that has to make the final judgement on the similarity of two documents encoded in UTF-8.
The two documents are very likely to be the same, or slightly different ...
1
vote
1answer
47 views
How can I tweak Levenshtein distance in classifying linguistically similar words (e.g. verb tenses, adjective comparisons, singular and plural)
I am out of ideas on how to complete this task. I am counting the frequency of a word, actually the base form of the word (e.g. running will be counted as run). I looked up on some implementations of ...
1
vote
1answer
38 views
Get category for texts
I want to choose a category of text(article)(ex. sport,economic), string, and I want to know whether the best way to do with function similar_text() or otherwise. I need to compare the texts. One ...
1
vote
1answer
32 views
Efficiently selecting a title (the center of the cluster) for a cluster of strings
I have an (imperfectly) clustered string data, where the items in one cluster might look like this:
[
Yellow ripe banana very tasty,
Yellow ripe banana with little dots,
Green apple with ...
1
vote
3answers
63 views
Does anyone know of a good string comparison / checking tool?
I am looking for a good online string checking tool that will allow me to enter two long strings; and it will show me where any differences occur. It would also be nice if there is a tool that on ...
1
vote
1answer
109 views
BLEU measure in perl
everyone.
I have seen a question raised by someone regarding Bleu method in java.. I do have the same problem. I just want to use Blue measure for simple sentence comparison. But i use perl ...
1
vote
2answers
148 views
compare short strings in different languages for similar sound - is Soundex the answer?
How could i get a sound similarity "rating" for a string written in one language with another string in another language: i.e an algorithm that will identify that
"David Letterman" and "דוד לטרמן" ...
1
vote
1answer
112 views
How does Stack Overflow display similar questions when you type in a new questⅰon?
This is one of the things that Stack Overflow and the rest of the sites that run on this platform do very well. As soon as you try to create a new question, a little window is shown that shows other ...
1
vote
2answers
194 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
2answers
49 views
How would you sort strings such that the anagrams are close to each other in C++?
It'd be really to implement in Java, since you could use the Comparator and the built in methods to sort character arrays and compare strings like this:
public class AnagramComparator implements ...
0
votes
3answers
56 views
Best way to rank sentences based on similarity from a set of Documents
I want to know the best way to rank sentences based on similarity from a set of documents.
For e.g lets say,
1. There are 5 documents.
2. Each document contains many sentences.
3. Lets take Document 1 ...
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
47 views
Testing strings similarity in django templates
How can i test for similarity of strings directly into django template?
I mean: suppose you have a database. "London City" is an entry in the db. The user submit a form whose value is just "London" ...
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
3answers
208 views
finding similar strings to given by keywords, each keyword have got it's own 'power'
This question is a chalenge for me, my friend can`t tell me how to do it, but he is really good programmer (I think).
Users can put into database sentences. When user puts a sentence it is saved in ...
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
202 views
Problems with preg_replace and ? (question mark) - what to do?
I have made this line of code to make the words, that is searced for, enhanced.
$tekst = preg_replace("/($searchstr)/i", '<span style="color: 8fb842; font-weight: bold;">$1</span>', ...
0
votes
0answers
259 views
Java Cosine Similarity Error
I am using getSimilarity(String s1, String s2) from the library : uk.ac.shef.wit.simmetrics.similaritymetrics.CosineSimilarity; to get the cosine similarity between two strings.
Well the problem is ...
0
votes
2answers
2k views
tf idf similarity problem
i am using TF/IDF to calculate similarity. For example if i have following two doc.
Doc A => cat dog
Doc B => dog sparrow
It is normal it's similarity would be 50% but when I calculate its TF/IDF. ...
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, ...