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