Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

77
votes
11answers
18k views

Good Python modules for fuzzy string comparison?

I'm looking for a Python module that can do simple fuzzy string comparisons. Specifically, I'd like a percentage of how similar the strings are. I know this is potentially subjective so I was hoping ...
22
votes
3answers
1k views

Fuzzy Regular Expressions

In my work I have with great results used approximate string matching algorithms such as Damerau–Levenshtein distance to make my code less vulnerable to spelling mistakes. Now I have a need to match ...
17
votes
2answers
257 views

Techniques for finding near duplicate records

I'm attempting to clean up a database that, over the years, had acquired many duplicate records, with slightly different names. For example, in the companies table, there are names like "Some Company ...
12
votes
7answers
395 views

Using pen strokes with fuzzy tolerance algorithm as encryption key

How can I encrypt/decrypt with fuzzy tolerance? I want to be able to use a Stroke on an InkCanvas as key for my encryption but when decrypting again the user should not have to draw the exact same ...
12
votes
5answers
551 views

How can I recognize slightly modified images?

I have a very large database of jpeg images, about 2 million. I would like to do a fuzzy search for duplicates among those images. Duplicate images are two images that have many (around half) of ...
6
votes
1answer
89 views

Fuzzy Matching Numbers

I've been working with Double Metaphone and Caverphone2 for String comparisons and they work good on things like names, addresses, etc (Caverphone2 is working best for me). However, they produce way ...
4
votes
3answers
504 views

Fuzzy string search in Java, including word swaps

I am a Java beginner, trying to write a program that will match an input to a list of predefined strings. I have looked at Levenshtein distance, but I have come to problems such as this: If I have ...
4
votes
2answers
136 views

difflib on Ruby

Is there a library similar to Python's difflib on Ruby? Particularly, I need one that has a method similar to difflib.get_close_matches. Any recommendations?
4
votes
2answers
330 views

How to group / compare similar news articles

In an app that i'm creating, I want to add functionality that groups news stories together. I want to group news stories about the same topic from different sources into the same group. For example, ...
4
votes
3answers
467 views

Canonical URL compare in Python?

Are there any tools to do a URL compare in Python? For example, if I have http://google.com and google.com/ I'd like to know that they are likely to be the same site. If I were to construct a rule ...
4
votes
1answer
214 views

Generate “fuzzy” difference of two files in Python

I have an issue for comparing two files. Basically, what I want to do is a UNIX-like diff between two files, for example: $ diff -u left-file right-file However my two files contain floats; and ...
4
votes
2answers
1k views

Comparing (similar) images with Python/PIL

I'm trying to calculate the similarity (read: Levenshtein distance) of two images, using Python 2.6 and PIL. I plan to us e the python-levenshtein library for fast comparison. Main question: What ...
3
votes
2answers
133 views

approximate RegEx in python with TRE: strange unicode behavior

I am trying to use the TRE-library in python to match misspelled input. It is important, that it does handle utf-8 encoded Strings well. an example: The German capital's name is Berlin, but from the ...
3
votes
1answer
223 views

Fuzzy Comparison in Ruby/Rails

I was looking for some good options for fuzzy comparison in Rails. Essentially, I have a set of strings that I'd like to compare against some strings in my database and I'd like to get the closest ...
3
votes
3answers
197 views

Damerau–Levenshtein distance for language specific quirks

To Dutch speaking people the two characters "ij" are considered to be a single letter that is easily exchanged with "y". For a project I'm working on I would like to have a variant of the ...
2
votes
1answer
74 views

How to normalize company names

We have user generated names of employers that come in all variations. For example, people have typed in or imported: Google Google, Inc. Google Inc. Google inc To a database search this, looks like ...
2
votes
1answer
287 views

elasticsearch fuzzy matching max_expansions & min_similarity

I'm using fuzzy matching in my project mainly to find misspellings and different spellings of the same names. I need to exactly understand how the fuzzy matching of elastic search works and how it ...
2
votes
1answer
129 views

Fuzzy Text Matching

I need to attempt to match a given text to that in a database. An example of this is: Given Text: Acura MDX Technology Package Databased items: Tech Pkg Technology Pkg with Navigation Tech Pkg ...
2
votes
2answers
135 views

Fuzzy matching a string within a large body of text in Python (url)

I have a list of company names, and I have a list of url's mentioning company names. The end goal is to look into the url, and find out how many of the companies on the url are in my list. Example ...
2
votes
1answer
252 views

Fuzzy matching/chunking algorithm

Background: I have video clips and audio tracks that I want to sync with said videos. From the video clips, I'll extract a reference audio track. I also have another track that I want to synchronize ...
2
votes
3answers
524 views

How can I use jaro-winkler to find the closest value in a table?

I have an implementation of the jaro-winkler algorithm in my database. I did not write this function. The function compares two values and gives the probability of match. So jaro(string1, string2, ...
2
votes
2answers
215 views

Anything wrong with this function for comparing floats?

When my Floating-Point Guide was yesterday published on slashdot, I got a lot of flak for my suggested comparison function, which was indeed inadequate. So I finally did the sensible thing and wrote a ...
2
votes
2answers
123 views

What would cause a Fuzzy Lookup to return a Null set of values from the reference table?

I'm doing a fuzzy lookup on a view of a table which does a fine job returning similarities with the occasional exception, and I can't seem to figure out what is causing the problem. Every so often, ...
2
votes
4answers
323 views

Is it possible to compare two tables when no common key exists between them?

I have two tables that I would like to compare for duplicates. These tables are just basic company information fields like name, city, state, etc. The only possibly common field that I can see would ...
1
vote
2answers
45 views

Word search within texts to find text that contains most matched variant

I want to find a way to find most suitable row from table which contains a word that is most similar to the word i'm entering. any idea? (I'm using OCR that finds words not exactly the same sometimes ...
1
vote
2answers
41 views

Techniques for finding repeat transactions between customers with misspellings or other change in information?

This isn't a SQL Server specific question; but there might be tSQL specific options here. I've got a bunch of customer details; many of them cancel and resign up for their service. They get an ...
1
vote
2answers
126 views

perl String::Approx on Arrays

I'm using String::Approx to find the most alike match for a two-item array out of a list of others. I was pleasantly surprised to find that you can use amatch() to compare an array to an array ...
1
vote
1answer
26 views

Sorting/combining related arrays

There must be some algorithm that will make this easier than what I'm doing... What I have are two arrays, each with two columns. One column in both is a timestamp, and the other in both is a ...
1
vote
3answers
169 views

Is there any implementation of this string matching method in python?

I am trying to work out which entries in my data store are near-duplicates using approximate string matching. Is there any implementation of the following approach in python, or do i need to try and ...
1
vote
2answers
337 views

Improving a fuzzy matching algorithm - Python

Task: Take two text files and output 100% matches and 75% matches. Solution: import difflib import csv # Imports and parses the files fileA = open("H:/comm.names.txt", 'r') try: setA = ...
1
vote
0answers
509 views

Lucene.net Fuzzy Phrase Search

I have tried this myself for a considerable period and looked everywhere around the net - but have been unable to find ANY examples of Fuzzy Phrase searching via Lucene.NET 2.9.2. ( C# ) Is something ...
1
vote
4answers
318 views

Fuzzy matching API in a long list of queries

I have an application which lets people ask predefined queries. However, the list of such queries is too long. Hence, the current approach is to let users enter a word in the search box and then show ...
1
vote
2answers
217 views

Fuzzy match two hash tables?

I'm looking for ideas on how to best match two hash tables containing string key/value pairs. Here's the actual problem I'm facing: I have structured data coming in which is imported into the ...
1
vote
0answers
904 views

Using MinHash to find similiarities between 2 images

I am using MinHash algorithm to find similar images between images. I have run across this post, How can I recognize slightly modified images? which pointed me to MinHash algorithm. I was using a C# ...
1
vote
3answers
1k views

q-gram approximate matching optimisations

I have a table containing 3 million people records on which I want to perform fuzzy matching using q-grams (on surname for instance). I have created a table of 2-grams linking to this, but search ...
1
vote
3answers
824 views

Fuzzy Text Search: Regex Wildcard Search Generator?

I'm wondering if there is some kind of way to do fuzzy string matching in PHP. Looking for a word in a long string, finding a potential match even if its mis-spelled; something that would find it if ...
1
vote
3answers
732 views

How do I determine whether a number is within a percentage of another number

I'm writing iPhone code that fuzzily recognizes whether a swiped line is straight-ish. I get the bearing of the two end points and compare it to 0, 90, 180 and 270 degrees with a tolerance of 10 ...
0
votes
1answer
111 views

Fuzzy string match

After running optical char recognition on some images, I get approximate text. Often the recognition is not great. For instance, the actual text "DATE" comes as "DHTE" or "0HTE". Basically I need to ...
0
votes
1answer
135 views

Fuzzy record matching with multiple columns of information

I have a question that is somewhat high level, so I'll try to be as specific as possible. I'm doing a lot of research that involves combining disparate data sets with header information that refers ...
0
votes
0answers
159 views

The main issue in “Approximate String Matching in databases” or “Fuzzy Matching” is PERFORMANCE (that is the biggest thing!)

In other words. I'm trying to find who has this technology and what claims do they have about the performance of their systems? My question is technical more than commercial. However, the application ...
0
votes
0answers
153 views

Sorting items in JQuery on a variety of attributes

I need to give users the functionality to sort a list of products based on several pre-selected field names. The products list is structured roughly like ... <span class="productList"> ...
0
votes
3answers
155 views

TSQL Query for analyzing Text

I have a table that has ordernumber, cancelled date and reason. Reason field is varchar(255) field and it was written by many different sales rep and really hard to group by the reason category I need ...