Views
No views yet
| Model | Accuracy | F1 Score |
|---|---|---|
| DistilBERT | 0.85 | 0.86 |
1from transformers import pipeline
2
3classifier = pipeline(
4 "text-classification",
5 model="JerryJJJJJ/fake-review-detector-distilbert"
6)
7
8classifier("The hotel was amazing and the staff were friendly.")