Yelp/yelp_review_full
Viewer • Updated • 700k • 23.2k • 144
How to use Shunian/yelp_review_classification with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Shunian/yelp_review_classification") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Shunian/yelp_review_classification")
model = AutoModelForSequenceClassification.from_pretrained("Shunian/yelp_review_classification")This model was trained from scratch 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 | Accuracy | Validation Loss |
|---|---|---|---|---|
| 0.7149 | 1.0 | 40625 | 0.6889 | 0.7167 |
| 0.6501 | 2.0 | 81250 | 0.6967 | 0.6979 |
| 0.5547 | 3.0 | 121875 | 0.6915 | 0.7377 |
| 0.5375 | 4.0 | 162500 | 0.6895 | 0.7611 |
| 0.4386 | 5.0 | 203125 | 0.8517 | 0.6852 |