You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
Description
Currently the output of the NER prediction contains the subword, but the end user doesn't care about subword but the original word
For example , 'call Qingxiong Daisy'
tokenizer.tokenize([text]) -> [['call', 'Qing', '##xi', '##ong', 'Daisy']]
output label [['O', 'PersonName', 'X', 'X', 'X', 'PersonName', 'X', 'X']]
Expected behavior with the suggested feature
The desired output should be
'Qingxiong Daisy'->PersonName
It can also be helpful to provide the position of the entity
Other Comments
The text was updated successfully, but these errors were encountered: