eriktks/conll2003
Updated • 41.4k • 166
How to use BoghdadyJR/test-ner with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="BoghdadyJR/test-ner") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("BoghdadyJR/test-ner")
model = AutoModelForTokenClassification.from_pretrained("BoghdadyJR/test-ner")This model is a fine-tuned version of bert-base-cased on the conll2003 dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
Base model
google-bert/bert-base-cased