Abhishek Bisht
Abhishek Bisht
I am also having the same issue, do I need to downgrade(as i am having tf version '1.3.0') the tf version? or there is some other solution to this issue?
@GuillermoJaca for prediction you can directly use your fine tune model in huggingface transformer pipeline, some sample code below for you reference: ``` from transformers import AutoTokenizer, AutoModelForTokenClassification from transformers...
@ChidanandKumarVimaan , This is 'BIO' tagging scheme (for token classification or NER task) , So each tag has "**B**egin" , "**I**nside", "**O**ther" , So in total 7 classes.
we do face this issues , any workaround