File size: 3,944 Bytes
88af295
 
552baaf
 
 
 
 
 
582a28d
 
 
88af295
552baaf
 
 
b14b857
 
 
 
552baaf
 
 
 
 
 
 
 
 
 
 
b14b857
552baaf
 
 
 
 
582a28d
 
 
 
 
 
552baaf
b14b857
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
552baaf
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
license: cc-by-sa-4.0
task_categories:
- text-generation
- conversational
language:
- en
size_categories:
- 10K<n<100K
tags:
- cartoons
---
## <h1>Spongebob Transcripts Dataset 🧽</h1>
The Spongebob Transcripts Dataset is a collection of transcripts from the beloved animated television series, Spongebob Squarepants. This dataset includes information on each line of dialogue spoken by a character, including the character's name, their replica, and the episode ID.

The number of characters in the dataset: **68**

Total number of words in the dataset: **~56,000 words**, **~2800 rows**, **last updated to Season 1 Episode 30**

## <h3>Dataset Overview 📊</h3>

|Column      | Description                         |
|------------|-------------------------------------|
|**Speaker** | The character speaking the dialogue.|
|**Replica** | The line of dialogue spoken.        |       
|**EP_ID**   | The episode ID of the transcript.   |

## <h3>System Replicas🔍</h3>
The system replicas describe the actions and events that occur in each episode. These replicas are written in a specific format, using brackets to indicate actions and events.

**<h5>Replica Format</h5>**

`{system} : [The episode opens with a bubble transition, and we see a coral reef under the sea. The camera zooms to initiate parallax scrolling, which reveals the city of Bikini Bottom. It continues zooming to show a brown rock, a Moai head, and a pineapple, which each contain inhabitants.]`

## <h3>Sample Data 💬</h3>

|Speaker	    |Replica	                                                                                                                                       |EP_ID  |
|---------------|--------------------------------------------------------------------------------------------------------------------------------------------------|-------|
|**Spongebob**	| I  just  met  this  girl.  She  wears  a  hat  full  of...  air.                                                                                 |s1e3_22|
|**Patrick**	| Do  you  mean  she  puts  on  "airs"?                                                                                                            |s1e3_23|
|**Spongebob**	| I  guess  so.                                                                                                                                    |s1e3_24|
|**Patrick**	| That's  just  fancy  talk.  If  you  wanna  be  fancy,  hold  your  pinky  up  like  this.  The  higher  you  hold  it,  the  fancier  you  are. |s1e3_25| 

## <h3>📊 Interactions with Dataset</h3>

**<h5>Using Pandas to filter rows</h5>**

1. To find all rows with a specific ep_id, you can use the following code:

```
import pandas as pd
#Read the CSV file into a Pandas DataFrame
df = pd.read_csv('dataset.csv')
#Define the ep_id you want to filter by
ep_id = 's1e2'
#Filter the DataFrame to get rows with an ep_id that starts with the defined ep_id
filtered_df = df[df['ep_id'].str.startswith(ep_id)]
#Print the filtered DataFrame
print(filtered_df)
```

2. To find rows where a specific character says a specific word or phrase, you can use the following code:

```
#Filter the DataFrame to get rows where a specific character says a specific word or phrase
speaker = 'SpongeBob'
word_or_phrase = 'jellyfish'
filtered_df = df[df['speaker'] == speaker]
filtered_df = filtered_df[filtered_df['replica'].str.contains(word_or_phrase)]
#Print the filtered DataFrame
print(filtered_df)
```

You can replace `SpongeBob` and `jellyfish` with any other speaker and word/phrase that you want to filter by.

## <h3>Data Sources 📝</h3>
The transcripts were sourced *Encyclopedia SpongeBobia*.

## <h3>Potential Uses 🧐</h3>
This Dataset could be used for a variety of natural language processing (NLP) tasks, including dialogue generation. It could also be used for educational purposes, such as studying the language and communication styles of different characters.