Questions tagged [name-matching]

22 questions
0
votes
0 answers

What are some algorithms tailored specifically towards *human* name-matching?

I wanted to know if there are any algorithms or libraries that specifically address the many issues of human name-matching. I ran across ones that fuzzy string-matching algorithms are built on, and I found that they tend to yield a lot of…
Rapid Readers
  • 303
  • 1
  • 3
  • 13
0
votes
0 answers

Python alternate function to fuzz.token_set_ratio to reduce execution time

I am working on name matching problem where I have names of customers which need to be compared with 2.5 Million records of existing customers saved in csv file. Below is the code which I tried and its taking 5-12 minutes for single name matching.…
0
votes
3 answers

Linux or unix find: shortcut for matching partial name

What I usually type: find . -name "*pattern*" what I want to type (for example. mnemonic = "all"): afind . -name "pattern" or find . -aname "pattern" I was just thinking there could be a shortcut like in the style of find . -iname "blah" or rgrep…
Starman
  • 336
  • 2
  • 11
0
votes
1 answer

How to properly match file names in subdirectories?

I am currently going through the book Real World Haskell and one exercise from this book asks the reader to implement file name matching with the use of **, which is the same as *, but also looks in subdirectories all the way down in the file…
Kapol
  • 6,383
  • 3
  • 21
  • 46
0
votes
1 answer

Combining table, web service data in Grails

I'm trying to figure out the best approach to display combined tables based on matching logic and input search criteria. Here is the situation: We have a table of customers stored locally. The fields of interest are ssn, first name, last name and…
Jack BeNimble
  • 35,733
  • 41
  • 130
  • 213
0
votes
0 answers

R Function to Replace SPEDIS in SAS

SPEDIS Function in SAS calculates cost as follows (Example): Example data words; input Operation $ Query $ Keyword $; Distance = spedis(query,keyword); Cost = distance * length(query); datalines; match fuzzy fuzzy singlet fuzy …
1
2