Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Catalan
DOI:
Libraries:
Datasets
pandas
License:
mmarimon commited on
Commit
549a3c6
·
verified ·
1 Parent(s): b955762

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +181 -180
README.md CHANGED
@@ -1,181 +1,182 @@
1
- ---
2
- annotations_creators:
3
- - Barcelona Supercomputing Center
4
- language_creators:
5
- - Racó Català
6
- - GuiaCat
7
- language:
8
- - ca
9
- license:
10
- - cc-by-nc-4.0
11
- multilinguality:
12
- - monolingual
13
- pretty_name: CaSSA
14
- task_categories:
15
- - text-classification
16
- task_ids: []
17
- ---
18
-
19
- # Dataset Card for CaSSA, the Catalan Structured Sentiment Analysis dataset
20
-
21
- ## Table of Contents
22
- - [Table of Contents](#table-of-contents)
23
- - [Dataset Description](#dataset-description)
24
- - [Dataset Summary](#dataset-summary)
25
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
26
- - [Languages](#languages)
27
- - [Dataset Structure](#dataset-structure)
28
- - [Data Instances](#data-instances)
29
- - [Data Fields](#data-fields)
30
- - [Data Splits](#data-splits)
31
- - [Dataset Creation](#dataset-creation)
32
- - [Curation Rationale](#curation-rationale)
33
- - [Annotations](#annotations)
34
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
35
- - [Considerations for Using the Data](#considerations-for-using-the-data)
36
- - [Social Impact of Dataset](#social-impact-of-dataset)
37
- - [Discussion of Biases](#discussion-of-biases)
38
- - [Other Known Limitations](#other-known-limitations)
39
- - [Additional Information](#additional-information)
40
- - [Dataset Curators](#dataset-curators)
41
- - [Licensing Information](#licensing-information)
42
- - [Citation Information](#citation-information)
43
- - [Contributions](#contributions)
44
-
45
- ## Dataset Description
46
-
47
- - **Point of Contact:** [Blanca Calvo](aina@bsc.es)
48
-
49
- ### Dataset Summary
50
-
51
- The CaSSA dataset is a corpus of 6,400 reviews and forum messages annotated with polar expressions. Each piece of text is annotated with all the expressions of polarity that it contains. For each polar expression, we annotated the expression itself, the target (the object of the expression), and the source (the subject expressing the sentiment). 25,453 polar expressions have been annotated.
52
-
53
- ### Supported Tasks and Leaderboards
54
-
55
- This dataset can be used to train models for sentiment analysis.
56
-
57
- ### Languages
58
-
59
- The dataset is in Catalan (`ca-ES`).
60
-
61
- ## Dataset Structure
62
-
63
- Each instance in the dataset is a text. For each text, there can be 0 to unlimited polar expressions, which are contained in the "opinions" field. Each opinion contains a source, a target, a polar expression, a polarity value and an intensity value.
64
-
65
- ### Data Instances
66
-
67
- ```
68
- {
69
- "sent_id": "2d6a3a0f-6686-4d8b-9c5f-51c424ff90be",
70
- "text": "El seu menú de nit de cap de setmana es boníssim, plats fets amb criteri i que surten com un rellotge. Servei proper i amable. Per poc mes de 20 euros entre pisos i flautes menges com un rei.",
71
- "opinions":
72
- [
73
- {
74
- "Source": None,
75
- "Target": [["Servei"], ["103:109"]],
76
- "Polar_expression": [["proper"], ["110:116"]],
77
- "Polarity": "Neutral",
78
- "Intensity": "Standard"
79
- },
80
- {
81
- "Source": None,
82
- "Target": [["Servei"], ["103:109"]],
83
- "Polar_expression": [["amable"], ["119:125"]],
84
- "Polarity": "Positive",
85
- "Intensity": "Standard"
86
- },
87
- {
88
- "Source": None,
89
- "Target": None,
90
- "Polar_expression": [["menges com un rei"], ["173:190"]],
91
- "Polarity": "Positive",
92
- "Intensity": "Strong"
93
- },
94
- {
95
- "Source": [["seu"], ["3:6"]],
96
- "Target": [["menú de nit de cap de setmana"], ["7:36"]],
97
- "Polar_expression": [["bon\u00edssim"], ["40:48"]],
98
- "Polarity": "Positive",
99
- "Intensity": "Strong"},
100
- {
101
- "Source": None,
102
- "Target": [["plats"], ["50:55"]],
103
- "Polar_expression": [["amb criteri"], ["61:72"]],
104
- "Polarity": "Positive",
105
- "Intensity": "Standard"
106
- }
107
- ]
108
- }
109
-
110
- ```
111
-
112
- ### Data Splits
113
-
114
- The dataset does not contain splits.
115
-
116
- ## Dataset Creation
117
-
118
- ### Curation Rationale
119
-
120
- We created this corpus to contribute to the development of language models in Catalan, a low-resource language.
121
-
122
- ### Source Data
123
-
124
- The data was collected using the messages from the GuiaCat online guide and the forum Racó Català.
125
-
126
- #### Initial Data Collection and Normalization
127
-
128
- We selected all the restaurant reviews we had from GuiaCat, and used a LLM to select messages in Racó Català that were written in the style of reviews.
129
-
130
- #### Who are the source language producers?
131
-
132
- The source language producers are users of GuiaCat and Racó Català.
133
-
134
- ### Annotations
135
-
136
- Each opinion contains a source, a target, a polar expression, a polarity value and an intensity value. Source, Target, and Polar_expressions are spans, which are represented both by the string and by the position of the characters. Polarity and Intensity are labels, which can respectively be, Positive, Negative and Neutral, and Standard and Strong.
137
-
138
- #### Annotation process
139
-
140
- - The data was annotated by 2 annotators. In the cases in which they did not fully agree, a third annotator selected the preferred annotation.
141
-
142
- #### Who are the annotators?
143
-
144
- All the annotators are native speakers of Catalan.
145
-
146
- ### Personal and Sensitive Information
147
-
148
- The data from Racó Català was annonymised to remove user names and emails, which were changed to random Catalan names. The mentions to the forum itself have also been changed.
149
-
150
- ## Considerations for Using the Data
151
-
152
- ### Social Impact of Dataset
153
-
154
- We hope this corpus contributes to the development of language models in Catalan, a low-resource language.
155
-
156
- ### Discussion of Biases
157
-
158
- We are aware that, since the data comes from online reviews and a public forum, this will contain biases, hate speech and toxic content. We have not applied any steps to reduce their impact.
159
-
160
- ### Other Known Limitations
161
-
162
- ## Additional Information
163
-
164
- ### Dataset Curators
165
-
166
- Language Technologies Unit (LangTech) at the Barcelona Supercomputing Center.
167
-
168
- This work was funded by the [Departament de la Vicepresidència i de Polítiques Digitals i Territori de la Generalitat de Catalunya](https://politiquesdigitals.gencat.cat/ca/inici/index.html#googtrans(ca|en) within the framework of [Projecte AINA](https://politiquesdigitals.gencat.cat/ca/economia/catalonia-ai/aina).
169
-
170
-
171
- ### Licensing Information
172
-
173
- [Creative Commons Attribution 4.0](https://creativecommons.org/licenses/by/4.0/).
174
-
175
- ### Citation Information
176
-
177
- ```
178
-
179
- ```
180
-
 
181
  ### Contributions
 
1
+ ---
2
+ annotations_creators:
3
+ - Barcelona Supercomputing Center
4
+ language_creators:
5
+ - Racó Català
6
+ - GuiaCat
7
+ language:
8
+ - ca
9
+ license:
10
+ - cc-by-nc-4.0
11
+ multilinguality:
12
+ - monolingual
13
+ pretty_name: CaSSA
14
+ task_categories:
15
+ - text-classification
16
+ task_ids: []
17
+ ---
18
+
19
+ # Dataset Card for CaSSA, the Catalan Structured Sentiment Analysis dataset
20
+
21
+ ## Table of Contents
22
+ - [Table of Contents](#table-of-contents)
23
+ - [Dataset Description](#dataset-description)
24
+ - [Dataset Summary](#dataset-summary)
25
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
26
+ - [Languages](#languages)
27
+ - [Dataset Structure](#dataset-structure)
28
+ - [Data Instances](#data-instances)
29
+ - [Data Fields](#data-fields)
30
+ - [Data Splits](#data-splits)
31
+ - [Dataset Creation](#dataset-creation)
32
+ - [Curation Rationale](#curation-rationale)
33
+ - [Annotations](#annotations)
34
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
35
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
36
+ - [Social Impact of Dataset](#social-impact-of-dataset)
37
+ - [Discussion of Biases](#discussion-of-biases)
38
+ - [Other Known Limitations](#other-known-limitations)
39
+ - [Additional Information](#additional-information)
40
+ - [Dataset Curators](#dataset-curators)
41
+ - [Licensing Information](#licensing-information)
42
+ - [Citation Information](#citation-information)
43
+ - [Contributions](#contributions)
44
+
45
+ ## Dataset Description
46
+ - **Homepage** [Projecte AINA](https://projecteaina.cat/tech/)
47
+ - **Repository** [HuggingFace](https://huggingface.co/projecte-aina)
48
+ - **Point of Contact** [email protected]
49
+
50
+ ### Dataset Summary
51
+
52
+ The CaSSA dataset is a corpus of 6,400 reviews and forum messages annotated with polar expressions. Each piece of text is annotated with all the expressions of polarity that it contains. For each polar expression, we annotated the expression itself, the target (the object of the expression), and the source (the subject expressing the sentiment). 25,453 polar expressions have been annotated.
53
+
54
+ ### Supported Tasks and Leaderboards
55
+
56
+ This dataset can be used to train models for sentiment analysis.
57
+
58
+ ### Languages
59
+
60
+ The dataset is in Catalan (`ca-ES`).
61
+
62
+ ## Dataset Structure
63
+
64
+ Each instance in the dataset is a text. For each text, there can be 0 to unlimited polar expressions, which are contained in the "opinions" field. Each opinion contains a source, a target, a polar expression, a polarity value and an intensity value.
65
+
66
+ ### Data Instances
67
+
68
+ ```
69
+ {
70
+ "sent_id": "2d6a3a0f-6686-4d8b-9c5f-51c424ff90be",
71
+ "text": "El seu menú de nit de cap de setmana es boníssim, plats fets amb criteri i que surten com un rellotge. Servei proper i amable. Per poc mes de 20 euros entre pisos i flautes menges com un rei.",
72
+ "opinions":
73
+ [
74
+ {
75
+ "Source": None,
76
+ "Target": [["Servei"], ["103:109"]],
77
+ "Polar_expression": [["proper"], ["110:116"]],
78
+ "Polarity": "Neutral",
79
+ "Intensity": "Standard"
80
+ },
81
+ {
82
+ "Source": None,
83
+ "Target": [["Servei"], ["103:109"]],
84
+ "Polar_expression": [["amable"], ["119:125"]],
85
+ "Polarity": "Positive",
86
+ "Intensity": "Standard"
87
+ },
88
+ {
89
+ "Source": None,
90
+ "Target": None,
91
+ "Polar_expression": [["menges com un rei"], ["173:190"]],
92
+ "Polarity": "Positive",
93
+ "Intensity": "Strong"
94
+ },
95
+ {
96
+ "Source": [["seu"], ["3:6"]],
97
+ "Target": [["menú de nit de cap de setmana"], ["7:36"]],
98
+ "Polar_expression": [["bon\u00edssim"], ["40:48"]],
99
+ "Polarity": "Positive",
100
+ "Intensity": "Strong"},
101
+ {
102
+ "Source": None,
103
+ "Target": [["plats"], ["50:55"]],
104
+ "Polar_expression": [["amb criteri"], ["61:72"]],
105
+ "Polarity": "Positive",
106
+ "Intensity": "Standard"
107
+ }
108
+ ]
109
+ }
110
+
111
+ ```
112
+
113
+ ### Data Splits
114
+
115
+ The dataset does not contain splits.
116
+
117
+ ## Dataset Creation
118
+
119
+ ### Curation Rationale
120
+
121
+ We created this corpus to contribute to the development of language models in Catalan, a low-resource language.
122
+
123
+ ### Source Data
124
+
125
+ The data was collected using the messages from the GuiaCat online guide and the forum Racó Català.
126
+
127
+ #### Initial Data Collection and Normalization
128
+
129
+ We selected all the restaurant reviews we had from GuiaCat, and used a LLM to select messages in Racó Català that were written in the style of reviews.
130
+
131
+ #### Who are the source language producers?
132
+
133
+ The source language producers are users of GuiaCat and Racó Català.
134
+
135
+ ### Annotations
136
+
137
+ Each opinion contains a source, a target, a polar expression, a polarity value and an intensity value. Source, Target, and Polar_expressions are spans, which are represented both by the string and by the position of the characters. Polarity and Intensity are labels, which can respectively be, Positive, Negative and Neutral, and Standard and Strong.
138
+
139
+ #### Annotation process
140
+
141
+ - The data was annotated by 2 annotators. In the cases in which they did not fully agree, a third annotator selected the preferred annotation.
142
+
143
+ #### Who are the annotators?
144
+
145
+ All the annotators are native speakers of Catalan.
146
+
147
+ ### Personal and Sensitive Information
148
+
149
+ The data from Racó Català was annonymised to remove user names and emails, which were changed to random Catalan names. The mentions to the forum itself have also been changed.
150
+
151
+ ## Considerations for Using the Data
152
+
153
+ ### Social Impact of Dataset
154
+
155
+ We hope this corpus contributes to the development of language models in Catalan, a low-resource language.
156
+
157
+ ### Discussion of Biases
158
+
159
+ We are aware that, since the data comes from online reviews and a public forum, this will contain biases, hate speech and toxic content. We have not applied any steps to reduce their impact.
160
+
161
+ ### Other Known Limitations
162
+
163
+ ## Additional Information
164
+
165
+ ### Dataset Curators
166
+
167
+ Language Technologies Unit (LangTech) at the Barcelona Supercomputing Center.
168
+
169
+ This work was funded by the [Departament de la Vicepresidència i de Polítiques Digitals i Territori de la Generalitat de Catalunya](https://politiquesdigitals.gencat.cat/ca/inici/index.html#googtrans(ca|en) within the framework of [Projecte AINA](https://politiquesdigitals.gencat.cat/ca/economia/catalonia-ai/aina).
170
+
171
+
172
+ ### Licensing Information
173
+
174
+ [Creative Commons Attribution 4.0](https://creativecommons.org/licenses/by/4.0/).
175
+
176
+ ### Citation Information
177
+
178
+ ```
179
+
180
+ ```
181
+
182
  ### Contributions