oats-eval
OATS: Opinion Aspect Target Sentiment Quadruple Extraction Dataset for Aspect-Based Sentiment Analysis — Chebolu et al. (2023) (arXiv:2309.13297, 2023)
What this evaluates
Evaluates joint extraction of aspect-based sentiment analysis elements (target, aspect, opinion, sentiment) at both sentence and review levels across multiple domains. Probes a model's ability to perform fine-grained, multi-element sentiment extraction and handle inter-sentence sentiment dynamics.
Datasets
Metrics
F1 (primary) — range: [0, 1]
- Exact-match F1 score over extracted tuples, triplets, or quadruples. A prediction is correct only if all corresponding elements exactly match the gold standard; partial matches are counted as incorrect.
Input / output format
Input: Review or sentence text containing user opinions.
Output: Extracted tuples (aspect category, sentiment), triplets (aspect, opinion, sentiment), or quadruples (target, aspect, opinion, sentiment).
Scoring recipe
def compute_f1(predictions, gold):
correct = sum(1 for p in predictions if p in gold)
precision = correct / len(predictions) if predictions else 0
recall = correct / len(gold) if gold else 0
return 2 * precision * recall / (precision + recall) if (precision + recall) > 0 else 0
Common pitfalls
- Partial matches (e.g., correct aspect but wrong sentiment) are explicitly counted as incorrect, not partial credit.
- Results are averaged over 5 runs with different random seeds, not reported from a single run.
- The 80/10/10 split is applied per domain, not globally across the entire dataset.
Evidence (verbatim from paper)
Following Zhang et al. (2021a); Xu et al. (2023); Wan et al. (2020), we use the F1 score to measure the performance of different approaches on all the tasks from Section 4.1. All experimental results are reported using the average of 5 different runs using distinct random seeds. We divided each domain dataset into train, validation, and test sets with 80%, 10%, and 10% splits, respectively. A tuple, triplet, and quadruple is considered correct only if all the corresponding prediction elements match the gold standard labels. We consider any partial matches as wrong predictions following Zhang et al. (2021a).
Citation
@misc{chebolu2023oats,
title={OATS: Opinion Aspect Target Sentiment Quadruple Extraction Dataset for Aspect-Based Sentiment Analysis},
author={Chebolu et al. (2023)},
year={2023},
note={arXiv:2309.13297}
}
1---2name: oats-eval3description: Evaluates joint extraction of aspect-based sentiment analysis elements (target, aspect, opinion, sentiment) at both sentence and review levels across multiple domains. Probes a model's ability to perform fine-grained, multi-element sentiment extraction and handle inter-sentence sentiment dynamics. Use when the user wants to benchmark on OATS, or asks about evaluating this task. Reports F1.4---56# oats-eval78> OATS: Opinion Aspect Target Sentiment Quadruple Extraction Dataset for Aspect-Based Sentiment Analysis — Chebolu et al. (2023) (arXiv:2309.13297, 2023)910## What this evaluates1112Evaluates joint extraction of aspect-based sentiment analysis elements (target, aspect, opinion, sentiment) at both sentence and review levels across multiple domains. Probes a model's ability to perform fine-grained, multi-element sentiment extraction and handle inter-sentence sentiment dynamics.1314## Datasets1516- **OATS** — total ?; splits: train (-1), val (-1), test (-1); repo https://github.com/RiTUAL-UH/OATS-ABSA1718## Metrics1920- `F1` **(primary)** — range: [0, 1]21 - Exact-match F1 score over extracted tuples, triplets, or quadruples. A prediction is correct only if all corresponding elements exactly match the gold standard; partial matches are counted as incorrect.2223## Input / output format2425**Input**: Review or sentence text containing user opinions.2627**Output**: Extracted tuples (aspect category, sentiment), triplets (aspect, opinion, sentiment), or quadruples (target, aspect, opinion, sentiment).2829## Scoring recipe3031```python32def compute_f1(predictions, gold):33 correct = sum(1 for p in predictions if p in gold)34 precision = correct / len(predictions) if predictions else 035 recall = correct / len(gold) if gold else 036 return 2 * precision * recall / (precision + recall) if (precision + recall) > 0 else 037```3839## Common pitfalls4041- Partial matches (e.g., correct aspect but wrong sentiment) are explicitly counted as incorrect, not partial credit.42- Results are averaged over 5 runs with different random seeds, not reported from a single run.43- The 80/10/10 split is applied per domain, not globally across the entire dataset.4445## Evidence (verbatim from paper)4647> Following Zhang et al. (2021a); Xu et al. (2023); Wan et al. (2020), we use the F1 score to measure the performance of different approaches on all the tasks from Section 4.1. All experimental results are reported using the average of 5 different runs using distinct random seeds. We divided each domain dataset into train, validation, and test sets with 80%, 10%, and 10% splits, respectively. A tuple, triplet, and quadruple is considered correct only if all the corresponding prediction elements match the gold standard labels. We consider any partial matches as wrong predictions following Zhang et al. (2021a).4849## Citation5051```bibtex52@misc{chebolu2023oats,53 title={OATS: Opinion Aspect Target Sentiment Quadruple Extraction Dataset for Aspect-Based Sentiment Analysis},54 author={Chebolu et al. (2023)},55 year={2023},56 note={arXiv:2309.13297}57}58```5960- arXiv: 2309.13297