Yelp/yelp_review_full
Viewer • Updated • 700k • 23k • 144
How to use noahgift/hf_fine_tune_hello_world with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="noahgift/hf_fine_tune_hello_world") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("noahgift/hf_fine_tune_hello_world")
model = AutoModelForSequenceClassification.from_pretrained("noahgift/hf_fine_tune_hello_world")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.2177 | 0.467 |
| No log | 2.0 | 250 | 1.0214 | 0.569 |
| No log | 3.0 | 375 | 1.0594 | 0.562 |
Base model
google-bert/bert-base-cased