Transformers How to use vuminhtue/Bert_NER_PII_Multi_Lingual with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="vuminhtue/Bert_NER_PII_Multi_Lingual") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("vuminhtue/Bert_NER_PII_Multi_Lingual")
model = AutoModelForTokenClassification.from_pretrained("vuminhtue/Bert_NER_PII_Multi_Lingual")