eriktks/conll2003
Updated • 21.9k • 174
How to use ljh1/bert-base-uncased-finetuned-conll2003 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ljh1/bert-base-uncased-finetuned-conll2003") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ljh1/bert-base-uncased-finetuned-conll2003")
model = AutoModelForTokenClassification.from_pretrained("ljh1/bert-base-uncased-finetuned-conll2003", device_map="auto")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:
| Train Loss | Validation Loss | Epoch |
|---|---|---|
| 0.0867 | 0.0477 | 0 |