1
vote
1answer
44 views
Adding fuzziness to a lucene query
Is there a simple way to add a fuzziness level to a user entered search query in lucene, I'd like to avoid having to parse their entered text if possible.
At present if they enter …
0
votes
2answers
58 views
Fuzzy grouping in Postgres
I have a table with contents that look similar to this:
id | title
------------
1 | 5. foo
2 | 5.foo
3 | 5. foo*
4 | bar
5 | bar*
6 | baz
6 | BAZ
…and so on. I would like …
4
votes
6answers
404 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 …
0
votes
1answer
126 views
a simple/practical example of fuzzy c-means algorithm
i a writing my master thesis on the subject of dynamic keystroke authentication. to support ongoing research, i am writing code to test out different methods of feature extraction …
0
votes
1answer
58 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\vie …
5
votes
4answers
142 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 …
1
vote
5answers
84 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+ …
5
votes
4answers
458 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).
…
2
votes
5answers
776 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 …
10
votes
7answers
2k 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 se …
2
votes
3answers
2k 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
Yest …
4
votes
10answers
515 views
Fuzzy date algorithm
I'm looking for a fuzzy date algorithm. I just started writing one and realised what a tedious taks it is. It quickly degenerated into a lot of horrid code to cope with special cas …
2
votes
2answers
130 views
Fuzzy date parsing with Java
Are there any libraries for Java that allow you to interpret dates like "Yesterday", "Next Monday", ...
0
votes
4answers
119 views
Determining if two or more summaries are similar
The problem is as follows:
I have one summary, usually between 20 to 50 words, that I'd like to compare to other relatively similar summaries. The general category and the geograp …
5
votes
8answers
364 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", …
