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