Tagged Questions
The approximate tag has no wiki summary.
6
votes
2answers
4k views
How to use n-grams approximate matching with Solr?
We have a database of movies and series, and as the data comes from many sources of varying reliability, we'd like to be able to do fuzzy string matching on the titles of episodes. We are using Solr ...
2
votes
3answers
560 views
Approximate string matching
I know this question have been asked a lot of time.
I want a suggestion on which algorithm is suitable for approximate string matching.
The application is specifically for company name matching only ...
1
vote
1answer
74 views
Compare List Similarity Python
S = ['hom']
L = ['home','honda','Hammer','Elephant']
I want to get output to show similarity
hom = home
and
print home
How I can do this? I want to use approximate matching to change "hom" ...
1
vote
4answers
818 views
How do I find the closest array element to an arbitrary (non-member) number?
Seemingly similar questions: "Finding closest number in an array" (in Java) and "find nearest match to array of doubles" (actually a geography problem).
I have a (sorted) array of doubles. Given an ...
1
vote
2answers
214 views
Approximate regular expression library for Java?
I have just written some code for approximate string matching. I would like to benchmark my naive algorithm against a more mature implementation running on the JVM. Any suggestions?
1
vote
2answers
130 views
Approximate a R2 line by a set of points
I'm working on an application with statistic analysis, and I need some help.
Given a set of n points, how can I approximate a line by them. I'm sure there is an algorithm but I couldn't find it.
...
1
vote
2answers
222 views
Django approximate matching of unicode strings with ascii equivalents
I have the following model and instance:
class Bashable(models.Model):
name = models.CharField(max_length=100)
>>> foo = Bashable.objects.create(name=u"piƱata")
Now I want to be able ...
1
vote
2answers
129 views
Algorithm for approximate search in sorted integer list
Consider an array of integers (assumed to be sorted); I would like to find the array index of the integer that is closest to a given integer in the fastest possible way. And the case where there are ...
1
vote
1answer
131 views
Finding multiple regex hits using approximate matching via the tre library
Using C, I'm trying to find the location and number of matches of a substring within another parent string. Because I also need to include approximate (hamming distance) matches, I'm using the tre ...
0
votes
2answers
1k views
sample java code for approximate string matching or boyer-moore extended for approximate string matching
I need to find 1.mismatch(incorrectly played notes), 2.insertion(additional played), & 3.deletion (missed notes), in a music piece (e.g. note pitches [string values] stored in a table) against a ...
0
votes
1answer
179 views
Image shaking when StretchDIBits partially
I am using C++ GDI, StretchDIBits to draw images on DC.
Because the original Image is large, and high quality is needed.
I use HAFTONE mode, to draw whole image on DC(zoom the image) seems time ...
-1
votes
5answers
71 views
Approximate decimals by a fraction
The question is:
One way to approximate decimals by a fraction is by using this method.
For decimal value X, initial conditions are, Z1 = X, D1 = 1 and D0 = 0
Repeat
Z(i+1) = 1 / (Z(i) + ...