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