TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Data Matching and Reconciliation machine learning algorithms suggestions

3 pointsby maddy1512almost 5 years ago
I am trying to solve Data reconciliation problem using ML and need suggestions on which algorithm would be suitable? Follow the link to get more elaboration: https://www.kaggle.com/questions-and-answers/171307

2 comments

Imanarialmost 5 years ago
In your example it seems the primary clue to find matches is the name, i.e. &#x27;ABC&#x27; + Corp&#x2F;Des&#x2F;etc. So how about doing some fuzzy string matching? Once you have done this you can identify edge cases and additionally group by dates or whatever.<p>So you would have &#x27;ABC&#x27; in L and a selection of matches in S. If not all of the matches in S actually belong to the ABC in L you are faced with the Knapsack Problem[0] that you can solve with different methods(sorry, no expert here).<p>[0] <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Knapsack_problem" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Knapsack_problem</a>
doonesburyalmost 5 years ago
You mean comparing data? For what purpose (to help assess solution) ... and why ML? Surely a rules engine is much more practical.
评论 #24057532 未加载