eriktks/conll2003
Updated • 41.3k • 166
How to use aitechguy/bert-ner-cpp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="aitechguy/bert-ner-cpp") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("aitechguy/bert-ner-cpp")
model = AutoModelForTokenClassification.from_pretrained("aitechguy/bert-ner-cpp")This model is a fine-tuned version of distilbert-base-uncased on an unknown 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 |
|---|---|---|
| 3.5619 | 3.5082 | 0 |
Base model
distilbert/distilbert-base-uncased