Yelp/yelp_review_full
Viewer • Updated • 700k • 23.7k • 144
How to use jakka/Bert_Classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="jakka/Bert_Classifier") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jakka/Bert_Classifier")
model = AutoModelForSequenceClassification.from_pretrained("jakka/Bert_Classifier")This model is a fine-tuned version of bert-base-cased on the yelp_review_full 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 |
|---|---|---|---|---|
| No log | 1.0 | 125 | 1.5585 | 0.45 |
| No log | 2.0 | 250 | 1.7005 | 0.51 |
| No log | 3.0 | 375 | 1.9851 | 0.43 |