How to compare the text of the email with the template? #6332
Grinnbob
started this conversation in
Help: Best practices
Replies: 1 comment
-
It sounds like no matter what you'll need new labeled data to make this work. You can use NER models on longer spans of text, but models can struggle with it because it's not always clear exactly which token to begin with (especially for something vague like "mention of use cases for this niche.") You could try splitting it into sentences and classifying each sentence, or you could try an NER model. There's a discussion of a similar task here: https://support.prodi.gy/t/annotation-for-argument-mining/601/18 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
There is a task of comparing the text of the email with the template - the email can be written arbitrarily, but it must necessarily contain blocks from the template, for example:
Not all blocks can be detected by regular expressions, in some cases it is necessary to select whole phrases. Tell me what spaCy methods are the best to solve the problem? Should it be a NER problem or something else?
Beta Was this translation helpful? Give feedback.
All reactions