arxiv-community/arxiv_dataset
Updated • 1.4k • 135
How to use jordyvl/baseline_BERT_50K_steps with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="jordyvl/baseline_BERT_50K_steps") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jordyvl/baseline_BERT_50K_steps")
model = AutoModelForSequenceClassification.from_pretrained("jordyvl/baseline_BERT_50K_steps")This model is a fine-tuned version of bert-base-uncased on the arxiv_dataset 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 | Accuracy | Precision | Recall | F1 | Hamming |
|---|---|---|---|---|---|---|---|---|
| 0.0343 | 0.03 | 10000 | 0.0315 | 0.9912 | 0.7679 | 0.1370 | 0.2326 | 0.0088 |
| 0.0244 | 0.06 | 20000 | 0.0234 | 0.9925 | 0.7813 | 0.3262 | 0.4602 | 0.0075 |
| 0.0219 | 0.09 | 30000 | 0.0210 | 0.9931 | 0.7572 | 0.4320 | 0.5502 | 0.0069 |
| 0.0204 | 0.12 | 40000 | 0.0197 | 0.9935 | 0.7738 | 0.4711 | 0.5857 | 0.0065 |
| 0.0197 | 0.15 | 50000 | 0.0192 | 0.9937 | 0.7968 | 0.4734 | 0.5940 | 0.0063 |
Base model
google-bert/bert-base-uncased