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
I encounter a weird problem recently, whatever the test dataset I put in entry of the NER Model in Camenbert, I never get the same number of prediction than the number of token I put in entry.
For exemple if I have 604 673 tokens in my test file I will have only 433 307 prediction tokens, so it become impossible to compare the results between prediction and reality. Does someone encouter the same problem ?
This is the code for the model loading nothing fancy :
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
I encounter a weird problem recently, whatever the test dataset I put in entry of the NER Model in Camenbert, I never get the same number of prediction than the number of token I put in entry.
For exemple if I have 604 673 tokens in my test file I will have only 433 307 prediction tokens, so it become impossible to compare the results between prediction and reality. Does someone encouter the same problem ?
This is the code for the model loading nothing fancy :
`from simpletransformers.ner import NERModel
model = NERModel(
model_type='camembert', model_name='camembert-base',
labels = tags, use_cuda= True
)`
Beta Was this translation helpful? Give feedback.
All reactions