Instructions to use protectai/bert-base-NER-onnx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use protectai/bert-base-NER-onnx with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="protectai/bert-base-NER-onnx")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("protectai/bert-base-NER-onnx") model = AutoModelForTokenClassification.from_pretrained("protectai/bert-base-NER-onnx") - Notebooks
- Google Colab
- Kaggle
ONNX version of dslim/bert-base-NER
This model is a conversion of dslim/bert-base-NER to ONNX format using the 🤗 Optimum library.
bert-base-NER is a fine-tuned BERT model that is ready to use for Named Entity Recognition and achieves state-of-the-art performance for the NER task. It has been trained to recognize four types of entities: location (LOC), organizations (ORG), person (PER) and Miscellaneous (MISC).
Specifically, this model is a bert-base-cased model that was fine-tuned on the English version of the standard CoNLL-2003 Named Entity Recognition dataset.
Usage
Loading the model requires the 🤗 Optimum library installed.
from optimum.onnxruntime import ORTModelForTokenClassification
from transformers import AutoTokenizer, pipeline
tokenizer = AutoTokenizer.from_pretrained("laiyer/bert-base-NER-onnx")
model = ORTModelForTokenClassification.from_pretrained("laiyer/bert-base-NER-onnx")
ner = pipeline(
task="ner",
model=model,
tokenizer=tokenizer,
)
ner_output = ner("My name is John Doe.")
print(ner_output)
LLM Guard
Community
Join our Slack to give us feedback, connect with the maintainers and fellow users, ask questions, or engage in discussions about LLM security!
- Downloads last month
- 1,688
Model tree for protectai/bert-base-NER-onnx
Base model
dslim/bert-base-NER