friends_dataset / README.md
michellejieli's picture
Update README.md
c019b34
metadata
language: en
tags:
  - distilroberta
  - sentiment
  - emotion
  - twitter
  - reddit

Dataset Card for friends_data

Table of Contents

Dataset Description

  • Homepage:
  • Repository:
  • Paper:
  • Leaderboard:
  • Point of Contact:

Dataset Summary

The Friends dataset consists of speech-based dialogue from the Friends TV sitcom. It is extracted from the SocialNLP EmotionX 2019 challenge.

Supported Tasks and Leaderboards

text-classification, sentiment-classification: The dataset is mainly used to predict a sentiment label given text input.

Languages

The utterances are in English.

Dataset Structure

Data Instances

A data point containing text and the corresponding label.

An example from the friends_dataset looks like this:

{ 'text': 'Well! Well! Well! Joey Tribbiani! So you came back huh?', 'label': 'surprise' }

Data Fields

The field includes a text column and a corresponding emotion label.

Dataset Creation

Curation Rationale

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. { "speaker": "Chandler", "utterance": "My duties? All right.", "emotion": "surprise", "annotation": "2000030" }

Utterance and emotion were extracted from the original files into a CSV file. The dataset was cleaned to remove non-neutral labels. This dataset was created to be used in fine-tuning an emotion sentiment classifier that can be useful to teach individuals with autism how to read facial expressions.