Instructions to use blaze999/Medical-NER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use blaze999/Medical-NER with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="blaze999/Medical-NER")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("blaze999/Medical-NER") model = AutoModelForTokenClassification.from_pretrained("blaze999/Medical-NER", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Performance metrics?
#2
by victormurcia - opened
Do you have the performance metrics for this model (i.e., F1 scores for the different classes) or a publication that showcases them?
Thanks!