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