Yelp/yelp_review_full
Viewer • Updated • 700k • 16.5k • 148
How to use yousseftarhri/bert-base-cased_fine_tuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="yousseftarhri/bert-base-cased_fine_tuned") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("yousseftarhri/bert-base-cased_fine_tuned")
model = AutoModelForSequenceClassification.from_pretrained("yousseftarhri/bert-base-cased_fine_tuned", device_map="auto")This model is a fine-tuned version of google-bert/bert-base-cased on the yelp_review_full dataset.
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 | 313 | 0.9228 | 0.6564 |
Base model
google-bert/bert-base-cased