Upload README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,144 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# XitXat
|
2 |
+
|
3 |
+
## Table of Contents
|
4 |
+
- [Table of Contents](#table-of-contents)
|
5 |
+
- [Dataset Description](#dataset-description)
|
6 |
+
- [Dataset Summary](#dataset-summary)
|
7 |
+
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
8 |
+
- [Languages](#languages)
|
9 |
+
- [Dataset Structure](#dataset-structure)
|
10 |
+
- [Data Instances](#data-instances)
|
11 |
+
- [Data Fields](#data-fields)
|
12 |
+
- [Data Splits](#data-splits)
|
13 |
+
- [Dataset Creation](#dataset-creation)
|
14 |
+
- [Curation Rationale](#curation-rationale)
|
15 |
+
- [Source Data](#source-data)
|
16 |
+
- [Annotations](#annotations)
|
17 |
+
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
18 |
+
- [Considerations for Using the Data](#considerations-for-using-the-data)
|
19 |
+
- [Social Impact of Dataset](#social-impact-of-dataset)
|
20 |
+
- [Discussion of Biases](#discussion-of-biases)
|
21 |
+
- [Other Known Limitations](#other-known-limitations)
|
22 |
+
- [Additional Information](#additional-information)
|
23 |
+
- [Dataset Curators](#dataset-curators)
|
24 |
+
- [Licensing Information](#licensing-information)
|
25 |
+
- [Citation Information](#citation-information)
|
26 |
+
- [Contributions](#contributions)
|
27 |
+
## Dataset Description
|
28 |
+
|
29 |
+
- **Point of Contact:** [Carme Armentano-Oller](carme.armentano@bsc.es) and [Carlos Rodríguez-Penagos](carlos.rodriguez1@bsc.es)
|
30 |
+
### Dataset Summary
|
31 |
+
XitXat is a conversacional dataset made of 950 chatbot conversations in 10 different domains.
|
32 |
+
Conversations have been commissioned following the Wizard-of-Oz methods.
|
33 |
+
User interactions have been labeled with a intent and rellevant slots.
|
34 |
+
XitXat dataset is released under [CC-by](https://creativecommons.org/licenses/by/4.0/) licence.
|
35 |
+
|
36 |
+
### Supported Tasks and Leaderboards
|
37 |
+
End-to-end dialog systems training, intent classification, anonymisation.
|
38 |
+
|
39 |
+
### Languages
|
40 |
+
The dataset is in Catalan (`ca-CA`)
|
41 |
+
|
42 |
+
## Dataset Structure
|
43 |
+
### Data Instances
|
44 |
+
One json file.
|
45 |
+
10 domains.
|
46 |
+
950 conversations.
|
47 |
+
7365 labeled sentences.
|
48 |
+
|
49 |
+
|
50 |
+
### Data Fields
|
51 |
+
#### For the conversations
|
52 |
+
|
53 |
+
- `id` (str): Unique ID assigned to the conversation.
|
54 |
+
- `nom` (str): Name of the conversation.
|
55 |
+
- `número` (int): Number of the conversation.
|
56 |
+
- `frases` (list): List of the sentences.
|
57 |
+
|
58 |
+
#### For the sentences
|
59 |
+
|
60 |
+
- `id` (str): Unique ID assigned to the sentence.
|
61 |
+
- `text` (str): Text of the sentence.
|
62 |
+
- `actor` (str): Role. It can ve "agent" or "usuari" (user).
|
63 |
+
- `intent` (str): Assigned intent of the sentence.
|
64 |
+
- `slots`(list): Slots detected in the sentence.
|
65 |
+
|
66 |
+
#### For the slots
|
67 |
+
|
68 |
+
- `tag` (str): Label of the slot.
|
69 |
+
- `text` (str): Text of the slot.
|
70 |
+
- `Start_char` (int): Initial character of the span.
|
71 |
+
- `End_char` (int): Last character of the span.
|
72 |
+
|
73 |
+
### Data Splits
|
74 |
+
|
75 |
+
- XitXat.json
|
76 |
+
|
77 |
+
|
78 |
+
## Dataset Creation
|
79 |
+
|
80 |
+
### Curation Rationale
|
81 |
+
|
82 |
+
We created this dataset to contribute to the development of language models in Catalan, a low-resource language.
|
83 |
+
|
84 |
+
### Source Data
|
85 |
+
|
86 |
+
Conversations were created for this dataset.
|
87 |
+
|
88 |
+
#### Initial Data Collection and Normalization
|
89 |
+
|
90 |
+
We commissioned these conversations to a specialized company. The same company did the first annotation. After a new version of the guidelines, we commissioned a revision of the annotations to an independent computational linguist.
|
91 |
+
|
92 |
+
#### Who are the source language producers?
|
93 |
+
|
94 |
+
Conversations were created for this dataset following the Wizard-of-Oz method.
|
95 |
+
|
96 |
+
### Annotations
|
97 |
+
|
98 |
+
#### Annotation process
|
99 |
+
|
100 |
+
Annotations where commissioned to a specialized company. They were made following the attached guidelines for [intents](https://github.com/projecte-aina/XitXat/blob/main/Guidelines%20anotaci%C3%B3%20v2%20Intents.pdf) and [slots](https://github.com/projecte-aina/XitXat/blob/main/Guidelines%20anotaci%C3%B3%20v3%20Slots.pdf).
|
101 |
+
|
102 |
+
#### Who are the annotators?
|
103 |
+
|
104 |
+
Annotations were commissioned to specialized professional annotators.
|
105 |
+
|
106 |
+
### Personal and Sensitive Information
|
107 |
+
|
108 |
+
No personal or sensitive information included.
|
109 |
+
|
110 |
+
There is some feigned personal information, created to give verisimilitude to the dataset.
|
111 |
+
|
112 |
+
## Considerations for Using the Data
|
113 |
+
|
114 |
+
### Social Impact of Dataset
|
115 |
+
|
116 |
+
This dataset contributes to the development of language models in Catalan, a low-resource language.
|
117 |
+
|
118 |
+
### Discussion of Biases
|
119 |
+
|
120 |
+
[N/A]
|
121 |
+
|
122 |
+
### Other Known Limitations
|
123 |
+
|
124 |
+
[N/A]
|
125 |
+
|
126 |
+
## Additional Information
|
127 |
+
|
128 |
+
### Dataset Curators
|
129 |
+
|
130 |
+
Carlos Rodríguez-Penagos (carlos.rodriguez1@bsc.es) and Carme Armentano-Oller (carme.armentano@bsc.es) from [BSC-CNS](https://www.bsc.es/).
|
131 |
+
|
132 |
+
|
133 |
+
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) within the framework of [Projecte AINA](https://politiquesdigitals.gencat.cat/ca/economia/catalonia-ai/aina).
|
134 |
+
|
135 |
+
|
136 |
+
### Licensing Information
|
137 |
+
|
138 |
+
This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/4.0/">Attribution 4.0 International License</a>.
|
139 |
+
|
140 |
+
### Citation Information
|
141 |
+
[N/A]
|
142 |
+
|
143 |
+
|
144 |
+
[DOI][N/A](https://doi.org/10.5281/zenodo.4526223)
|