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