efainman commited on
Commit
e4beb04
·
verified ·
1 Parent(s): 5e5f6a3

Upload 4 files

Browse files
Files changed (4) hide show
  1. README.md +184 -3
  2. test.jsonl +0 -0
  3. train.jsonl +0 -0
  4. val.jsonl +0 -0
README.md CHANGED
@@ -1,3 +1,184 @@
1
- ---
2
- license: cc-by-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TRABL: Travel-Domain Aspect-Based Sentiment Analysis Dataset
2
+
3
+ This repository contains the **TRABL dataset**, released in support of our paper accepted to **The ACM Web Conference 2026 (WWW 2026)**:
4
+
5
+ > **TRABL: A Unified Framework for Travel Domain Aspect-Based Sentiment Analysis Applications of Large Language Models**
6
+
7
+ The dataset is designed to support research on **Aspect-Based Sentiment Analysis (ABSA)** in the travel domain, with a particular focus on *joint extraction* of structured sentiment tuples and *supporting evidence snippets*.
8
+
9
+ ---
10
+
11
+ ## 1. Overview
12
+
13
+ TRABL extends the standard ABSA *quad prediction* task by additionally requiring the extraction of **textual evidence snippets** that justify each extracted sentiment tuple. The dataset enables training and evaluation of models for both fine-grained opinion mining and downstream travel applications such as recommendation, review summarization, and property type detection.
14
+
15
+ The data consists of **English user reviews** from three travel-related domains:
16
+
17
+ * **Hotels**
18
+ * **Attractions**
19
+ * **Destinations**
20
+
21
+ Each review is annotated by **two independent annotators**, following carefully designed guidelines and quality control procedures.
22
+
23
+ ---
24
+
25
+ ## 2. Task Definition
26
+
27
+ Given a review text (T), the task is to extract a set of tuples of the form:
28
+
29
+ ```
30
+ (aspect_term, aspect_category, opinion_span, sentiment, snippet)
31
+ ```
32
+
33
+ Where:
34
+
35
+ * **Aspect Term**: Explicit mention of the target entity (e.g., *"room"*)
36
+ * **Aspect Category**: Semantic category from a **closed set of 112 travel-domain categories**
37
+ * **Opinion Span**: Evaluative expression (e.g., *"spacious"*)
38
+ * **Sentiment**: One of `{positive, negative, neutral}`
39
+ * **Snippet**: A *contiguous span* of text from the review that provides sufficient evidence for the other fields
40
+
41
+ Some fields may be `null` if not explicitly mentioned (e.g., implicit aspects).
42
+
43
+ This formulation generalizes multiple ABSA subtasks, including:
44
+
45
+ * Category extraction `(c)`
46
+ * Category–sentiment extraction `(c, p)`
47
+ * Category–sentiment with evidence `(c, p, s)`
48
+ * Standard quad prediction `(a, o, c, p)`
49
+ * Quad prediction with snippet extraction `(a, o, c, p, s)`
50
+
51
+ ---
52
+
53
+ ## 3. Dataset Splits
54
+
55
+ The dataset is split into **train**, **validation**, and **test** sets as follows:
56
+
57
+ | Split | #Rows |
58
+ | ---------- | ----- |
59
+ | Train | 5,768 |
60
+ | Validation | 898 |
61
+ | Test | 900 |
62
+
63
+ > Note: A *row* corresponds to a single annotated review instance (including annotator-specific annotations).
64
+
65
+ ---
66
+
67
+ ## 4. Data Format
68
+
69
+ The data is released in **JSONL** format (one JSON object per line).
70
+
71
+ Each example contains the following top-level fields:
72
+
73
+ * **review_id**: Unique identifier for the review
74
+ * **annotator**: Identifier of the annotator (`1` or `2`)
75
+ * **text**: Full review text
76
+
77
+ * Hotel reviews include title, positive, and negative sections
78
+ * Attraction and destination reviews contain free text only
79
+ * **labels**: List of labeled tuples
80
+
81
+ Each entry in `annotations` has the structure:
82
+
83
+ ```json
84
+ {
85
+ "aspect_term": "value for money",
86
+ "aspect_category": "value for money",
87
+ "opinion_span": "good",
88
+ "sentiment": "positive",
89
+ "snippet": "The good value for money"
90
+ }
91
+ ```
92
+
93
+ ---
94
+
95
+ ## 5. Example
96
+
97
+ **Input Review (excerpt):**
98
+
99
+ ```
100
+ The good value for money, the helpful & polite staff, the level of cleanliness.
101
+ ```
102
+
103
+ **Annotations (excerpt):**
104
+
105
+ ```json
106
+ [
107
+ {
108
+ "aspect_term": "value for money",
109
+ "aspect_category": "value for money",
110
+ "opinion_span": "good",
111
+ "sentiment": "positive",
112
+ "snippet": "The good value for money"
113
+ },
114
+ {
115
+ "aspect_term": "staff",
116
+ "aspect_category": "property staff and service support",
117
+ "opinion_span": "helpful & polite",
118
+ "sentiment": "positive",
119
+ "snippet": "the helpful & polite staff"
120
+ }
121
+ ]
122
+ ```
123
+
124
+ ---
125
+
126
+ ## 6. Annotation Process and Quality
127
+
128
+ * Each review was annotated by **two independent annotators**
129
+ * Annotation was supported by LLM-generated initial labels, followed by human correction
130
+ * Disagreements were normalized using post-processing rules
131
+ * **Overall annotator agreement** (F1): ~67%, consistent with prior ABSA benchmarks
132
+ * Agreement exceeds **80%** when evaluated on partial field subsets (e.g., category or sentiment only)
133
+
134
+ ---
135
+
136
+ ## 7. Statistics
137
+
138
+ * **Domains**: Hotels, Attractions, Destinations
139
+ * **Total number of reviews**: 3,783
140
+ * **Average review length**: ~42 words
141
+ * **Average number of extracted tuples per review**:
142
+
143
+ * Annotator 1: ~6.96
144
+ * Annotator 2: ~6.77
145
+ * **Sentiment distribution**: Skewed positive, reflecting real-world travel review behavior
146
+
147
+ ---
148
+
149
+ ## 8. Intended Use
150
+
151
+ This dataset is intended for **research purposes only**, including but not limited to:
152
+
153
+ * Aspect-Based Sentiment Analysis
154
+ * Opinion mining and evidence extraction
155
+ * Travel-domain NLP
156
+ * Evaluation of LLMs and lightweight fine-tuned models
157
+ * Structured information extraction with explainability
158
+
159
+ ---
160
+
161
+ ## 9. Citation
162
+
163
+ If you use this dataset, please cite:
164
+
165
+ ```
166
+ @inproceedings{madmon2026trabl,
167
+ title = {TRABL: A Unified Framework for Travel Domain Aspect-Based Sentiment Analysis Applications of Large Language Models},
168
+ author = {Madmon, Omer and Golan, Shiran and Fainman, Eran and Kleinfeld, Ofri and Beladev, Moran},
169
+ booktitle = {Proceedings of The ACM Web Conference},
170
+ year = {2026}
171
+ }
172
+ ```
173
+
174
+ ---
175
+
176
+ ## 10. License and Privacy
177
+
178
+ * All reviews were processed under strict internal privacy and PII guidelines
179
+ * The dataset is released for **non-commercial research use**, cc-by-sa-4.0 license
180
+ * No personally identifiable information is included
181
+
182
+ ---
183
+
184
+ For questions or issues related to the dataset, please refer to the paper or open an issue on the dataset repository.
test.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
train.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
val.jsonl ADDED
The diff for this file is too large to render. See raw diff