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