Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address matching case study #9

Open
OlivierBinette opened this issue Apr 1, 2022 · 1 comment
Open

Address matching case study #9

OlivierBinette opened this issue Apr 1, 2022 · 1 comment
Labels
good first issue Good for newcomers

Comments

@OlivierBinette
Copy link
Owner

OlivierBinette commented Apr 1, 2022

Create a user example (see #2) which shows how StringCompare can be used to match business names.

That is, suppose we have a long list L of business names. Given another business name provided by a user, we want to be able to find the name in L which most closely matches it.

We can address this problem in a few steps:

  1. Identify an open dataset to work with for the case study.
  2. Identify a string comparison function which works best to match similar business names.
  3. Implement the brute force solution which computes all distances and returns the closest match.
  4. Try to speed up computation using indexing/blocking.
  5. Try to speed up computation using B-trees.
  6. Try to find quick approximate solutions using locality sensitive hashing.

Steps 1-3 are the most important. Steps 4-6 can be explored if they seem interesting.

References

@OlivierBinette OlivierBinette added the good first issue Good for newcomers label Apr 1, 2022
@OlivierBinette OlivierBinette added this to the distance module milestone Apr 1, 2022
@OlivierBinette
Copy link
Owner Author

Lucene could be a source of inspiration for search features: https://lucene.apache.org/core/2_9_4/queryparsersyntax.html#Fuzzy%20Searches

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant