community-datasets/caner
Viewer • Updated • 258k • 202 • 1
How to use terzimert/bert-finetuned-ner-v4.008 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="terzimert/bert-finetuned-ner-v4.008") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("terzimert/bert-finetuned-ner-v4.008")
model = AutoModelForTokenClassification.from_pretrained("terzimert/bert-finetuned-ner-v4.008", 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.2406 | 1.0 | 3228 | 0.6527 | 0.8627 | 0.8265 | 0.8442 | 0.8838 |
| 0.1618 | 2.0 | 6456 | 0.7268 | 0.8988 | 0.8243 | 0.8599 | 0.8982 |
| 0.1087 | 3.0 | 9684 | 0.8089 | 0.8976 | 0.8431 | 0.8695 | 0.8992 |