Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
9answers
9k views

Are there any Fuzzy Search or String Similarity Functions libraries written for C#?

There are similar question, but not regarding C# libraries I can use in my source code. Thank you all for your help. I've already saw lucene, but I need something more easy to search for similar ...
25
votes
8answers
7k views

A better similarity ranking algorithm for variable length strings

I'm looking for a string similarity algorithm that yields better results on variable length strings than the ones that are usually suggested (levenshtein distance, soundex, etc). For example, Given ...
24
votes
5answers
9k views

fuzzy string search in Java

I'm looking for high performance Java library for fuzzy string search. There are numerous algorithms to find similar strings, Levenshtein distance, Daitch-Mokotoff Soundex, n-grams etc. What Java ...
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
13answers
4k views

Fuzzy date algorithm

I'm looking for a fuzzy date algorithm. I just started writing one and realised what a tedious task it is. It quickly degenerated into a lot of horrid code to cope with special cases like the ...
15
votes
10answers
739 views

Fuzzy regular expressions

I am looking for a way to do a fuzzy match using regular expressions. I'd like to use Perl, but if someone can recommend any way to do this that would be helpful. As an example, I want to match a ...
11
votes
4answers
660 views

“Did you mean” feature on a dictionary database

I have a ~300.000 row table; which includes technical terms; queried using PHP and MySQL + FULLTEXT indexes. But when I searching a wrong typed term; for example "hyperpext"; naturally giving no ...
8
votes
3answers
225 views

Good fuzzy book to start with

from what you have read or heard about, which is a good book on fuzzy logic/sets/systems? I'm interested in basic of fuzzy systems, fuzzification/defuzzification etc. There are a plenty of such books, ...
7
votes
1answer
700 views

How to find a position of a substring within a string with fuzzy match

I have come across a problem of matching a string in an OCR recognized text and find the position of it considering there can be arbitrary tolerance of wrong, missing or extra characters. The result ...
7
votes
4answers
2k views

Lucene query: bla~* (match words that start with something fuzzy), how?

In the Lucene query syntax I'd like to combine * and ~ in a valid query similar to: bla~* //invalid query Meaning: Please match words that begin with "bla" or something similar to "bla". Update: ...
7
votes
6answers
10k views

Fuzzy matching using T-SQL

I have a table Persons with personaldata and so on. There are lots of columns but the once of interest here are: addressindex, lastname and firstname where addressindex is a unique address drilled ...
7
votes
8answers
1k views

Fuzzy matching of product names

I need to automatically match product names (cameras, laptops, tv-s etc) that come from different sources to a canonical name in the database. For example "Canon PowerShot a20IS", "NEW powershot A20 ...
6
votes
4answers
7k views

Is it possible to perform T-SQL fuzzy lookup without SSIS?

SSIS 2005/2008 does fuzzy lookups and groupings. Is there a feature that does the same in T-SQL?
5
votes
1answer
58 views

Matching fuzzy strings

I have two tables that I need to merge together in PostgreSQL, on the common variable "company name." Unfortunately many of the company names don't match exactly (i.e. MICROSOFT in one table, ...
5
votes
2answers
112 views

Fuzzy date/time management library for .NET

I am searching for a .NET library that can store and manage fuzzy (i.e. uncertain) dates/times, that is, temporal expressions that do not follow the usual precise pattern of day, month, year, hour, ...
5
votes
1answer
712 views

Top Border of Top Cell in UITableView Grouped Cells is Thick & Fuzzy

I am using a UITableView with grouped rows. In each group / section of rows, the top cell has a thicker-than-normal top border and the top rounded corners appear fuzzy. I am not doing anything out of ...
5
votes
4answers
314 views

How to spot and analyse similar patterns like Excel does?

You know the functionality in Excel when you type 3 rows with a certain pattern and drag the column all the way down Excel tries to continue the pattern for you. For example Type... test-1 test-2 ...
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 ...
4
votes
6answers
902 views

Performance of Python worth the cost?

I'm looking at implementing a fuzzy logic controller based on either PyFuzzy (Python) or FFLL (C++) libraries. I'd prefer to work with python but am unsure if the performance will be acceptable in ...
4
votes
2answers
1k views

django fuzzy string translation not showing up

1)why sometimes i got 'fuzzy' item in django.po language file . Actually i have checked in my project the 'fuzzy' string item is totally unique. #: .\users\views.py:81 .\users\views.py:101 #, fuzzy ...
4
votes
3answers
5k views

Fuzzy Date Time Picker Control in C# .NET?

I am implementing a Fuzzy Date control in C# for a winforms application. The Fuzzy Date should be able to take fuzzy values like Last June 2 Hours ago 2 Months ago Last week Yesterday Last year ...
4
votes
4answers
11k views

How do I do a fuzzy match of company names in MYSQL with PHP for auto-complete?

My users will import through cut and paste a large string that will contain company names. I have an existing and growing MYSQL database of companies names, each with a unique company_id. I want to ...
3
votes
1answer
164 views

clustering and matlab

Hi im trying to cluster some data I have from the kdd 1999 cup dataset the output from the file looks like this: ...
3
votes
1answer
318 views

Lucene: searching numeric fields

In Lucene, I would like to build a 'fuzzy' query over numeric fields. Currently all I found was the NumericRangeQuery class to search numeric fields. In the application I am building, the user is to ...
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 ...
3
votes
1answer
723 views

Lucene Fuzzy Search for customer names and partial address

I was going thru all the existing questions posts but couldn't get something much relevant. I have file with millions of records for person first name, last name, address1, address2, country code, ...
3
votes
4answers
205 views

Algorithm detect repeating/similiar strings in a corpus of data — say email subjects, in Python

I'm downloading a long list of my email subject lines , with the intent of finding email lists that I was a member of years ago, and would want to purge them from my Gmail account (which is getting ...
3
votes
2answers
230 views

Is this a variation of the traveling salesman problem?

I'm interested in a function of two word lists, which would return an order agnostic edit distance between them. That is, the arguments would be two lists of (let's say space delimited) words and ...
3
votes
1answer
531 views

Fuzzy date parsing with Java

Are there any libraries for Java that allow you to interpret dates like "Yesterday", "Next Monday", ...
3
votes
5answers
209 views

Identifying if 2 HTML pages are similar

I'm trying to identify differences between a base case and supplied case. Looking for a library to tell me similarity in percentage or something like that. For Example: I've 10 different HTML pages. ...
2
votes
1answer
90 views

Fuzzy K-modes clustering how to find the cluster centers

I'm trying to understand fuzzy k-modes algorithm (look mainly at page 3) in order to implement it. I'm stuck at the calculation of cluster centers they said as shown in the pic I need to know ...
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
0answers
134 views

Chrome and font handling

I have some larger font for my webpage. It is arial font. I Used Adobe BrowserLab and my site looks great in every browser but Chrome. Chrome makes the font all fuzzy and pixelated. Is chrome just a ...
2
votes
1answer
380 views

Searching names with Apache Solr

I've just ventured into the seemingly simple but extremely complex world of searching. For an application, I am required to build a search mechanism for searching users by their names. After reading ...
2
votes
4answers
383 views

Does fuzzy logic really improve simple machine learning algorithms?

I'm reading about fuzzy logic and I just don't see how it would possibly improve machine learning algorithms in most instances (which it seems to be applied to relatively often). Take for example, ...
2
votes
2answers
453 views

Calculating a relative Levenshtein distance - make sense?

I am using both Daitch-Mokotoff soundexing and Damerau-Levenshtein to find out if a user entry and a value in the application are "the same". Is Levenshtein distance supposed to be used as an ...
2
votes
2answers
549 views

Find similar ASCII character in Unicode

Does someone know a easy way to find characters in Unicode that are similar to ASCII characters. An example is the "CYRILLIC SMALL LETTER DZE (ѕ)". I'd like to do a search and replace for similar ...
2
votes
1answer
426 views

Simplifying a four-dimensional rule table in Matlab: addressing rows and columns of each dimension

I'm currently trying to automatically generate a set of fuzzy rules for a set of observations which contain four values for each observation, where each observation will correspond to a state (a good ...
2
votes
1answer
723 views

Django's makemessages creates a lot of fuzzy entries

Each time I added some strings to a Django project, I run "django-admin.py makemessages -all" to generate .PO files for all locales. The problem is even I only added 5 news strings, the makemessages ...
2
votes
3answers
467 views

Levenshtein distance on non-English strings

Will the Levenshtein distance algorithm work well for non-English language strings too? Update: Would this work automatically in a language like Java when comparing Asian characters?
2
votes
3answers
1k views

Merging two Data Frames using Fuzzy/Approximate String Matching in R

DESCRIPTION I have two datasets with information that I need to merge. The only common fields that I have are strings that do not perfectly match and a numerical field that can be substantially ...
2
votes
5answers
195 views

Fuzzy Scheduling

I'm writing a windows service that needs to execute a task (that connects to a central server) every 30 days +- 5 days (it needs to be random). The service will be running on 2000+ client machines, so ...
1
vote
1answer
47 views

fuzzy k-mode clustering membership value calculation

I was searching for a clustering algorithm to fuzzy cluster categorical attributes and I found the k-modes algorithm I've got the way it works but I'm not understanding if the membership or belonging ...
1
vote
1answer
136 views

.dat file how to create one based on excel document

I have a .csv file in my matlab folder with 38 columns and about 48 thousand entries. I was hoping on using the findcluster gui but it only accepts .dat files. How do I create a .dat file in matlab ...
1
vote
1answer
106 views

fuzzy c- means categorical data

can the fuzzy c-means applied on non numerical data sets ? i.e categorical or mixed numerical and categorical.. if yes (I hope so :( ): how we calculate cluster centers ? If NO , what is the ...
1
vote
4answers
176 views

Fuzzy matching deduplication in less than exponential time?

I have a large database (potentially in the millions of records) with relatively short strings of text (on the order of street address, names, etc). I am looking for a strategy to remove inexact ...
1
vote
0answers
38 views

Fuzzy Search + Inverted Indexing

I am studiyng fuzzy search and how to retrieve information from database using a Inverted Indexing. I studied Inverted Indexig and I think it only works for EXACT match. Imagine the situation i have ...
1
vote
1answer
102 views

Jess and FuzzyJ assistance

I'm trying to learn Jess and FuzzyJ but am having problems getting a simple program to run. I have looked at it for hours and am no quite sure why it doesn't run. If someone could point me in the ...
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
1answer
454 views

Using FuzzyFinder in vim (+MiniBuffer), open file in current buffer

I'm using FuzzyFinder in vim together with MiniBufExplorer (with this setting in my .vimrc: g:miniBufExplorerMoreThanOne = 1). I'm using FuzzyFinder in coverage-file mode (where it works pretty much ...

1 2