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 ...
10
votes
9answers
3k 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 ...
5
votes
6answers
433 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 ...
3
votes
1answer
68 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
3answers
77 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
582 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
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
117 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 ...
1
vote
1answer
40 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 ...
0
votes
0answers
16 views
How can I start from two arrays of short strings, and get the ids from the former and the most similar strings from the latter?
In PHP, suppose I have two arrays:
$Strings_a = array( 27 => 'Michael Woolf Yard | UU',
32 => 'Samantha Gale | XO',
17 => 'Rosson Morse | UU',
...
0
votes
3answers
226 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
1answer
211 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>', ...