How to combine the predicted NER RAW output (in BIOES tags format) into Words? #10602
-
Hi,
Here, it is quite visible "Marty" is tagged as "B-Partyname" , "A." is tagged as "I-Party_name", "Rick" is tagged as "E-Party_name" Please help to get this output in the desired format. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
You can use |
Beta Was this translation helpful? Give feedback.
-
Backing up a step, I think you've accidentally trained your NER model on the individual BIOES tags rather than entity spans with labels like |
Beta Was this translation helpful? Give feedback.
Backing up a step, I think you've accidentally trained your NER model on the individual BIOES tags rather than entity spans with labels like
Party_name
rather thanB-Party_name
. Take another look at how you're converting your training data?