Babelscape/multinerd
Viewer • Updated • 3.35M • 1.17k • 25
How to use doomnova/distilbert_system_B with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="doomnova/distilbert_system_B") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("doomnova/distilbert_system_B")
model = AutoModelForTokenClassification.from_pretrained("doomnova/distilbert_system_B")# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("doomnova/distilbert_system_B")
model = AutoModelForTokenClassification.from_pretrained("doomnova/distilbert_system_B")This model is a fine-tuned version of distilbert-base-cased 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:
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| 0.0134 | 1.0 | 8205 | 0.0208 | 0.9466 | 0.9488 | 0.9477 | 0.9929 |
| 0.0067 | 2.0 | 16410 | 0.0237 | 0.9453 | 0.9528 | 0.9490 | 0.9931 |
| 0.0031 | 3.0 | 24615 | 0.0293 | 0.9456 | 0.9531 | 0.9493 | 0.9931 |
Base model
distilbert/distilbert-base-cased
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="doomnova/distilbert_system_B")