|
Does C# has its own library for Fuzzy match(Fuzzy Search) or a method that can be used directly from .net libraries?
Started by Eyla on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I have seen and used Soundex (a method for fuzzy matching.
There are many
Current versions don't have it built in .
Ldcsharp.htm
It's well known and established and excellent for fuzzy matching text.
|
|
What is the best Fuzzy Matching Algorithm (Fuzzy Logic, N-Gram, Levenstein, Soundex ....,) to process more than 1 records in less time?
Started by LittleBoy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I suggest you read the articles by Navarro mentioned here: http://en.wikipedia.org/wiki/Fuzzy.
|
|
Hi all,
from your experience/from what you have encountered, what are some practical applications of fuzzy systems? I know about system control and fuzzy controllers, about intrinsic linguistic support, but here I refer to concrete applications of fuzzy...
Started by lmsasu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
And some advocacy about how fuzzy logic is good for some applications....
From Wikipedia :
Fuzzy logic is used in the operation or programming of:
* Air conditioners machine)
Here's another detailed list of applications for fuzzy logic.
|
Ask your Facebook Friends
|
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 and the like
Are there any sample implementations of "Fuzzy...
Started by AB Kolan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
PeriodSelector:
From [datepicker] Until [datepicker] [numericupdown] months ago [numericupdown] hours ago Last week Yesterday Week [datepicker] Day [datepicker... .
We just add a list of combo boxes - controls to pick your choice .
We have a similar control.
|
|
How do I form "fuzzy" date/time from RFC 2822 formatted (Sat, 18 Jul 2009 10:57:43 +0300) timestamp?
With fuzzy date I mean like: "5 minutes ago", "2 days, 15 minutes ago".
Started by incidence on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Def fuzzy_date(date) date = Date.parse(date, true) unless /Date.
Such a format from a Time object.
|
|
SSIS 2005/2008 does fuzzy lookups and groupings. Is there a feature that does the same in T-SQL?
Started by ScottStonehouse on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Brief primer here
Fuzzy lookup uses a q-gram approach, by breaking strings up into tiny sub-strings.
Stonehouse') AND SOUNDEX(Firstname) = SOUNDEX('Scott')
Full Text Search is a great fuzzy tool.
|
|
Hi,
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, however my belief is that only few of them worth...
Started by lmsasu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
There on the subject applying it to a particular field, like Fuzzy Logic and The Semantic Web.
|
|
PNG images appear "fuzzy" in flash CS3. They are very blocky and appear unanti-aliased (if that is a word) Does anyone have a fix for this? Is there some setting I'm missing?
Started by pypmannetjies on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Bitmap images will be 'fuzzy' if you.
Always look exactly how you'd want them to regardless of scaling .
|
|
I'm working with a couple of AI algorithms at school and I find people use the words Fuzzy Logic to explain any situation that they can solve with a couple of cases. When I go back to the books I just read about how instead of a state going from On to...
Started by DFectuoso on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
' Fuzzy Thinking: The New Science of Fuzzy Logic ' from 1994 is readable (and available quite cheaply secondhand via though (in my paraphrase - not having read....
Well, you could read the works of Bart Kosko , one of the 'founding fathers' .
|
|
Hello,
Is there a Python module to interpret fuzzy timestamps like the date command in unix:
> date -d "2 minutes ago" Tue Aug 11 16:24:05 EST 2009
The closest I have found so far is dateutil.parser, which fails for the above example.
thanks
Started by Richard on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It works for these test cases:
today tomorrow yesterday in a couple of days a couple of days from now a couple of ... .
Check out this open source module: parsedatetime
I have been dabbling with this using pyparsing - you can find my latest attempt here .
|