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