A metric for measuring the amount of difference between two sequences.
0
votes
0answers
9 views
How to similarity between two string mysql
I have some "company name" into a csv file (hand written by operator and this could be contain some mistake)
At example into my csv file i could find: "ComputerService by Elise" when in my mysql ...
1
vote
3answers
46 views
Edit distance between two graphs
I'm just wondering if, like for strings where we have the Levenshtein distance (or edit distance) between two strings, is there something similar for graphs?
I mean, a scalar measure that identifies ...
0
votes
0answers
46 views
elocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC
My server is on ubuntu 12.04.
I'm trying to install the Levenshtein-MySQL-UDF available here : https://github.com/jmcejuela/Levenshtein-MySQL-UDF
I downloaded the .zip and locate the levenshtein.c ...
10
votes
4answers
433 views
How to speed up Levenshtein distance calculation
I am trying to run a simulation to test the average Levenshtein distance between random
binary strings.
My program is in python but I am using this C extension. The function that is relevant and ...
2
votes
1answer
51 views
Find similarity between nodes
I have lots of profiles as nodes and would like to match nodes whose name property have a certain string similarity.
How is that possible with Neo4j?
Example data:
NodeA: {
"name": "Jacob F ...
0
votes
1answer
69 views
Approximate String Matching in R
for my research I have to match two data sets containing fund information. Unfortunately there is no common identifier. The good thing is that I have an identifier in both documents for the document ...
-3
votes
1answer
38 views
Algorithm to find where exactly two strings match/differ [closed]
I am working on finding the similarity/differences in the source code of different java programs.
I've used an implementation of the Levenshtein algorithm to find how similar two programs are.
I want ...
0
votes
0answers
85 views
Edit distance for words [closed]
Imagine that you have the following document:
test tests wiki wikipedia world worldcup
and some queries to run on this document for calculating edit distance for each word in the document in the ...
0
votes
0answers
80 views
Edit distance between two sets of strings
Problem Definition:
Given two sets of strings X and Y we want to find the edit distance between each word in X with each word in Y.
I know Levenshtein distance algorithm using trie but this is only ...
1
vote
3answers
105 views
How to compute letter frequency similarity?
Given this data (relative letter frequency from both languages):
spanish => 'e' => 13.72, 'a' => 11.72, 'o' => 8.44, 's' => 7.20, 'n' => 6.83,
english => 'e' => 12.60, 't' ...
1
vote
0answers
79 views
Calculating the difference in percentage of two HTML files
I'm writing a tool in php which compares HTML files and shows the differences. Now I'm looking for an efficient way to calculate the difference in percentage between two HTML files. These files can be ...
0
votes
1answer
143 views
two whole texts similarity using levenshtein distance [closed]
I have two text files which I'd like to compare. What I did is:
I've split both of them into sentences.
I've measured levenshtein distance between each of the sentences from one file with each of ...
0
votes
0answers
79 views
C# LevenshteinDistance algorithm for spellchecker
Hi i'm using the levenshtein algorithm to calculate the difference between two strings, using the below code. It currently provides the total number of changes which need to be made to get from ...
6
votes
1answer
116 views
Levenshtein distance c# count error type
I found this bit of code that computes Levenshtein's distance between an answer and a guess:
int CheckErrors(string Answer, string Guess)
{
int[,] d = new int[Answer.Length + 1, Guess.Length + ...
0
votes
0answers
22 views
Can We implement levenshtein algorithm without creating matrix
I have gone through answers for edit distances with less time and space complexity when its just calculating edit distance. What if I want to reconstruct the edit sequence? Can I do it in much less ...
10
votes
2answers
221 views
How can I adapt the Levenshtein Distance algorithm to limit matches to a single word?
I'm using the Levenshtein Distance algorithm in C++ to compare two strings to measure how close they are to each other. However, the plain Levenshtein Distance algorithm does not distinguish word ...
0
votes
0answers
68 views
Edit distance library in Java supporting user cost functions
There are quite a few edit distance implementations for Java. However, they mostly implement specifically Levenshtein distance, i.e. one where cost of any replacement is 2, any insertion: 1, and any ...
0
votes
1answer
30 views
How to calculate equal hash for similar strings?
I create Antiplagiat. I use a shingle method. For example, I have the following shingles:
I go to the cinema
I go to the cinema1
I go to th cinema
Is there a method of calculating the equal hash ...
4
votes
1answer
91 views
Does an algorithm exist to find the minimal sum of non-intersecting values in a 2D array?
I'm looking for a fast algorithm to determine a particular minimal property of a given 2D array - the sum of the smallest values that have no rows or columns in common. I'm sure this must have a name ...
0
votes
2answers
64 views
Postgresql: levenshtein distance in a row column with comma-separated values
I have a table with the following content :
ID | Name | Alias
1 | William | Will,Willo,Wolli
I would like to return the row ID if the levenshtein distance (or metaphone, it does not matter) of a ...
0
votes
1answer
85 views
PHP Levenshtein on Query Result
I want to perform a levenshtein on a mysql query result.
The query looks like this:
$query_GID = "select `ID`,`game` from `gkn_catalog`";
$result_GID = $dbc->query($query_GID);
$row_GID = ...
0
votes
2answers
160 views
O(n) or faster algorithm for sorting a list by levenshtein distance?
Is there an O(n) or faster algorithm for sorting a list by levenshtein distance? I've looked some solutions on SO, but all of them invoke traditional sorting. Now, suppose you just sum the bytes of ...
4
votes
2answers
130 views
Levenshtein search
Let me explain my problem, the question will come more easily.
I work on a site which sell let's say stuff and offer a "vendors search". On this search, you enter your city or postal code or region ...
1
vote
2answers
186 views
Objective-c: Fast Fuzzy Search Match
Does anyone know of a fast implementation of fuzzy search matching for Objective-c? (levenshtein-distance algorithm).
I found this: ...
1
vote
0answers
112 views
Fulltext search with typos: levenshtein-fulltext?
I have a mysql table with the following columns
City Country Continent
New York States Noth America
New York Germany Europe - considering there's one ;)
Paris France Europe
If I ...
2
votes
3answers
129 views
Data structure for retrieving strings that are close by Levenshtein distance
For example, starting with the set of english words, is there a structure/algorithm that allows one fast retrieval of strings such as "light" and "tight", using the word "right" as the query? I.e., I ...
0
votes
1answer
140 views
Using levenshtein search for multiple words
Is it possible for levenshtein search to check all words in a search query against an array?
The code is as follows:
$input = $query;
// array of words to check against
$words = ...
0
votes
0answers
65 views
Using pl/sql output in WHERE-statement
I have a little question. So I'm using the Levenshtein-score to search for a comparison of more than 85% between street names in two different tables. But when I use my Levenshtein-score calculation ...
1
vote
1answer
126 views
How to install python-Levenshtein windows
I saw there was a similar question asked about installing levenshtein in python, but was instructed to start my own by another user, so here it goes.
I am runnings windows 8 64bit. When I try to ...
3
votes
1answer
165 views
Calculating the complexity of Levenshtein Edit Distance
I have been looking at this simple python implementation of Levenshtein Edit Distance for all day now.
def lev(a, b):
"""Recursively calculate the Levenshtein edit distance between two strings, a ...
1
vote
3answers
91 views
How to optimize this Levenshtein distance calculation
Table a has around 8,000 rows and table b has around 250,000 rows. Without the levenshtein function the query takes just under 2 seconds. With the function included it is taking about 25 minutes.
...
1
vote
0answers
170 views
Complexity of edit distance (Levenshtein distance) recursion top down implementation
I have been working all day with a problem which I can't seem to get a handle on. The task is to show that a recursive implementation of edit distance has the time complexity Ω(2max(n,m)) where ...
0
votes
0answers
66 views
Using a combination of INNER JOIN and levenshtein distance
I'm wondering is it possible to use a combination on INNER JOIN and levenshtein distance? I have the MySQL query below which finds specific rows with NULL values and attempts to match the title of ...
1
vote
2answers
125 views
Can not understand the idea/usefulness of edit distance among strings
I am reading about the problem of Edit Distance between 2 strings.
It can be solved by Dynamic Programming using a formula of Edit Distance. What I can not understand is its usefulness.
First of all ...
5
votes
1answer
173 views
PHP - Optimization - Levenshtein distance with prioritization
I am trying to implement the levenshtein algorithm with a little addon. I want to prioritize values that have consecutive matching letters. I've tried implementing my own form of it using the code ...
1
vote
5answers
103 views
Calculating the distance between two articles accurately
I am writing a software to compare articles. I am looking for an efficient and accurate algorithm to calculate the difference (variation) between two articles. The variation should completely depend ...
1
vote
1answer
95 views
python fuzzy levenshtein ratio got early exit?
I am trying to compare 100k strings each other. I cannot further reduce the problem size (i.e #strings in the set). I am using Levenshtein ratio to compare. If ratio is greater than 0.9, I want to ...
2
votes
1answer
74 views
Detect matching patterns between strings
I'm making an application for learning to spell certain words. Currently my task is to detect the matching letters between the user input and the correct word (highlight the user where the error was). ...
1
vote
3answers
298 views
Fuzzy screenshot comparison with Selenium
I'm using Selenium to automate webpage functional testing. It's important for us to do a pixel-by-pixel comparison when we roll out new code, so we're using Selenium to take screenshots and comparing ...
1
vote
1answer
189 views
MySQL Mixing Damerau–Levenshtein Fuzzy with Like Wildcard
I recently implemented the UDFs of the Damerau–Levenshtein algorithms into MySQL, and was wondering if there is a way to combine the fuzzy matching of the Damerau–Levenshtein algorithm with the ...
4
votes
3answers
453 views
How python-Levenshtein.ratio is computed
According to the python-Levenshtein.ratio source:
https://github.com/miohtama/python-Levenshtein/blob/master/Levenshtein.c#L722
it's computed as (lensum - ldist) / lensum. This works for
...
0
votes
1answer
201 views
Porting C# Levenshtein Distance to Java [closed]
I am developing a spell checker application from an existing one,
can any one help me changing this part of code, i can't port pointers or stackalloc to Java because no equivalent exists.
A java ...
0
votes
0answers
48 views
To find intersection of the sets of goods in pricelists
I have e-commerce website.
I have two suppliers. My goals is to find the intersection of the sets of pricelists.
They both have part of the same products in the pricelists. The problem is that the ...
0
votes
1answer
220 views
Damerau–Levenshtein distance algorithm in MySQL as a function
Does anyone know of a MySQL implementation of the Damerau–Levenshtein distance algorithm as a stored procedure/function that takes a single specified string as a parameter and looks for fuzzy matches ...
0
votes
0answers
107 views
MySql Levenshtein Function to find similar products
On my website I have a product page where the title is stored in $title. I need to find similar products to display on that page. From what I've read so far the levenshtein function would do this, ...
1
vote
1answer
199 views
How do I balance a BK-Tree and is it necessary?
I am looking into using an Edit Distance algorithm to implement a fuzzy search in a name database.
I've found a data structure that will supposedly help speed this up through a divide and conquer ...
0
votes
1answer
317 views
Fuzzy matching for every query term in Solr
With the Levenshtein implementation of Lucene 4 claiming to be 100 times faster than before (http://blog.mikemccandless.com/2011/03/lucenes-fuzzyquery-is-100-times-faster.html) I would like to do ...
1
vote
1answer
140 views
How do I use a Levenshtein distance function in a sqlite where clause?
I'm trying to implement a "Did you mean?" sort of function for a search.
I'm trying to do a query that uses the levenshtein function, which was written in ruby. I was wondering how I could use this ...
2
votes
1answer
167 views
Create hamming distance function in mysql without super privilege
I would like to use the hamming distance in my MySQL database (used over phpMyAdmin) but did not succeed in creating the function with the code given here.
I'm refering to this code:
CREATE FUNCTION ...
1
vote
3answers
194 views
How to add levenshtein function in mysql?
I got the code for levenshtein distance for mysql form "http://kristiannissen.wordpress.com/2010/07/08/mysql-levenshtein/" but, how to add that function in mysql? I am using xampp and i need it for ...
