A component to do fuzzy matching
See original GitHub issueWhat problem are you trying to solve?
I want synonyms to work even if there are typos in it.
For example, given:
nlu:
- synonym: credit examples: |
- credit card account
- credit account
If DIETClassifier extracts credit acount
, I want it to be normalized to credit
.
The current workaround is to add all typos to the examples:
nlu:
- synonym: credit examples: |
- credit card account
- credit account
- credit acount
What’s your suggested solution?
A component that can match a value to the examples in a synonym based on stemming, misspellings, and partial matches and returns a score.
Examples (if relevant)
No response
Is anything blocking this from being implemented? (if relevant)
No response
Definition of Done
A component that does fuzzy matching
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Fuzzy matching - 7.3
Fuzzy matching - 7.3 ; Module: Talend Studio ; Content: Data Governance > Third-party systems > Data Quality components > Matching components >...
Read more >Talend Fuzzy Matching
The Talend Fuzzy Matching or tFuzzyMatch component compares the source data (main table) column value with the reference table (lookup table).
Read more >How To Do Fuzzy String Matching In Rasa
A better solution is to build a custom component that goes through the extracted entities and fuzzy matches them to a list of...
Read more >Fuzzy Match Tool
The most effective way to build a fuzzy match is to perform the match process on multiple fields within the input file.
Read more >How fuzzy matching works in Power Query
The best scenario for applying the fuzzy match algorithm is when all text strings in a column contain only the strings that need...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Exalate commented:
TyDunn commented:
That make sense. Thanks for letting me know! We have added this to the NLU optimisations product area
Exalate commented:
hsm207 commented:
@TyDunn the work @koaning did was taipo. It does data augmentation but does not handle normalization.