community-datasets/caner
Viewer • Updated • 258k • 174 • 1
How to use terzimert/bert-finetuned-ner-v4.010 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="terzimert/bert-finetuned-ner-v4.010") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("terzimert/bert-finetuned-ner-v4.010")
model = AutoModelForTokenClassification.from_pretrained("terzimert/bert-finetuned-ner-v4.010", device_map="auto")This model is a fine-tuned version of bert-base-multilingual-cased on the caner 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.2718 | 1.0 | 3228 | 0.4023 | 0.8748 | 0.8019 | 0.8368 | 0.9265 |
| 0.2052 | 2.0 | 6456 | 0.3959 | 0.8243 | 0.8265 | 0.8254 | 0.9291 |
| 0.1584 | 3.0 | 9684 | 0.3657 | 0.8622 | 0.8716 | 0.8668 | 0.9393 |