Token Classification
Transformers
PyTorch
TensorFlow
JAX
ONNX
Safetensors
English
bert
Eval Results (legacy)
Instructions to use dslim/bert-base-NER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dslim/bert-base-NER with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="dslim/bert-base-NER")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("dslim/bert-base-NER") model = AutoModelForTokenClassification.from_pretrained("dslim/bert-base-NER") - Inference
- Notebooks
- Google Colab
- Kaggle
Any visualization tools for the output?
#6
by mustafacan - opened
I want a visualization like spacy's displacy while I am showing this but displacy requires his own object, I am giving dictionary from this output. Is there any visualization tools for my problem?