arxiv-community/arxiv_dataset
Updated • 1.41k • 135
How to use jordyvl/test_implementation with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="jordyvl/test_implementation") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jordyvl/test_implementation")
model = AutoModelForSequenceClassification.from_pretrained("jordyvl/test_implementation")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.7077 | 0.0 | 5 | 0.6857 | 0.5529 | 0.0089 | 0.4040 | 0.0173 | 0.4471 |
| 0.6801 | 0.0 | 10 | 0.6736 | 0.5926 | 0.0090 | 0.3751 | 0.0177 | 0.4074 |
Base model
google-bert/bert-base-uncased