eriktks/conll2003
Updated • 31.7k • 170
How to use Luasmontesinos/results with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="Luasmontesinos/results") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("Luasmontesinos/results")
model = AutoModelForTokenClassification.from_pretrained("Luasmontesinos/results")This model is a fine-tuned version of bert-base-cased 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:
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.2212 | 0.5695 | 500 | 0.0748 | 0.8824 | 0.9167 | 0.8992 | 0.9791 |
| 0.0698 | 1.1390 | 1000 | 0.0596 | 0.9141 | 0.9387 | 0.9263 | 0.9836 |
| 0.0465 | 1.7084 | 1500 | 0.0627 | 0.9235 | 0.9411 | 0.9322 | 0.9846 |
| 0.0313 | 2.2779 | 2000 | 0.0593 | 0.9315 | 0.9497 | 0.9405 | 0.9858 |
| 0.0244 | 2.8474 | 2500 | 0.0575 | 0.9310 | 0.9493 | 0.9401 | 0.9858 |
Base model
google-bert/bert-base-cased