nbroad/company_names
Viewer • Updated • 142k • 20 • 1
How to use nbroad/deberta-v3-small-company-names with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="nbroad/deberta-v3-small-company-names") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("nbroad/deberta-v3-small-company-names")
model = AutoModelForTokenClassification.from_pretrained("nbroad/deberta-v3-small-company-names", device_map="auto")This model is a fine-tuned version of microsoft/deberta-v3-small on the nbroad/company_names 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.0746 | 1.0 | 2126 | 0.0657 | 0.7415 | 0.7868 | 0.7635 | 0.9753 |
| 0.0485 | 2.0 | 4252 | 0.0651 | 0.7631 | 0.7904 | 0.7765 | 0.9764 |
| 0.044 | 3.0 | 6378 | 0.0707 | 0.7688 | 0.7921 | 0.7802 | 0.9766 |
Base model
microsoft/deberta-v3-small