Datasets:
michellejieli
commited on
Commit
•
06200fc
1
Parent(s):
0003474
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dataset Summary
|
2 |
+
The Friends dataset consists of speech-based dialogue from the Friends TV sitcom. It is extracted from the [SocialNLP EmotionX 2019 challenge](https://sites.google.com/view/emotionx2019/datasets).
|
3 |
+
|
4 |
+
# Supported Tasks and Leaderboards
|
5 |
+
text-classification, sentiment-classification: The dataset is mainly used to predict a sentiment label given text input.
|
6 |
+
|
7 |
+
# Languages
|
8 |
+
The utterances are in English.
|
9 |
+
|
10 |
+
# Dataset Structure
|
11 |
+
|
12 |
+
A data point containing text and the corresponding label.
|
13 |
+
|
14 |
+
An example from the friends_dataset looks like:
|
15 |
+
|
16 |
+
{
|
17 |
+
'text': 'Well! Well! Well! Joey Tribbiani! So you came back huh?',
|
18 |
+
'label': 'surprise'
|
19 |
+
}
|
20 |
+
|
21 |
+
# Dataset Creation
|
22 |
+
|
23 |
+
The dataset contains 1000 English-language dialogues originally in JSON files. The JSON file contains an array of dialogue objects. Each dialogue object is an array of line objects, and each line object contains speaker, utterance, emotion, and annotation strings.
|
24 |
+
{
|
25 |
+
"speaker": "Chandler",
|
26 |
+
"utterance": "My duties? All right.",
|
27 |
+
"emotion": "surprise",
|
28 |
+
"annotation": "2000030"
|
29 |
+
}
|
30 |
+
|
31 |
+
Utterance and emotion were extracted from the original files into a CSV file. The dataset was cleaned to remove non-neutral labels.
|