Approximate Sentence Matching Task
Jump to navigation
Jump to search
An Approximate Sentence Matching Task is a sentence matching task that is an approximate matching task.
References
2014
- http://bommaritollc.com/2014/06/advanced-approximate-sentence-matching-python/
- Let’s imagine you have a sentence of interest. You’d like to find all occurrences of this sentence within a corpus of text. How would you go about this?
The most obvious answer is to look for exact matches of the sentence. You’d search through every sentence of your corpus, checking to see if every character of the sentence matched exactly.
But what if capitalization, punctuation, or white-spacing varied in the slightest? …
… So let’s learn to perform fuzzy sentence matching, also known as “approximate” sentence matching.
- Let’s imagine you have a sentence of interest. You’d like to find all occurrences of this sentence within a corpus of text. How would you go about this?