Views
No views yet
indobenchmark/indobert-base-p2| Label ID | Sentiment | Description |
|---|---|---|
| 0 | Negative | Poor quality, bad service, expensive, or complaints. |
| 1 | Neutral | General mentions without specific positive or negative sentiment. |
| 2 | Positive | Good quality, excellent service, affordable, or praise. |
| Aspect | F1-Score |
|---|---|
| Food Quality | 88.43% |
| Service | 87.10% |
| Price | 94.75% |
1from transformers import AutoModelForSequenceClassification, AutoTokenizer
2
3model_path = "./absa-fnb-model/model_absa_fnb_best"
4model = AutoModelForSequenceClassification.from_pretrained(model_path)
5tokenizer = AutoTokenizer.from_pretrained("indobenchmark/indobert-base-p2")1{
2 "Food Quality": "Positive",
3 "Service": "Positive",
4 "Price": "Negative"
5}