jxm commited on
Commit
ee307bc
1 Parent(s): 8ea096c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -32
README.md CHANGED
@@ -1,33 +1,21 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: int64
6
- - name: season
7
- dtype: int64
8
- - name: episode
9
- dtype: int64
10
- - name: scene
11
- dtype: int64
12
- - name: line_text
13
- dtype: string
14
- - name: speaker
15
- dtype: string
16
- - name: deleted
17
- dtype: bool
18
- splits:
19
- - name: train
20
- num_bytes: 5065062
21
- num_examples: 47927
22
- - name: test
23
- num_bytes: 636404
24
- num_examples: 5991
25
- - name: val
26
- num_bytes: 634534
27
- num_examples: 5991
28
- download_size: 3405920
29
- dataset_size: 6336000
30
- ---
31
- # Dataset Card for "the_office_lines"
32
 
33
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## the_office_lines
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
+ <img src="https://a.pinatafarm.com/1351x1232/c8fa71efd1/the-office-handshake.jpg" width="256">
4
+
5
+ A dataset of lines from the U.S. version of the tv show "The Office". Lines were originally scraped from the website [officequotes.net](https://www.officequotes.net/), are fan-transcribed, and may be of dubious quality.
6
+
7
+ Contains a train split (47,927 lines), test split (5,991 lines) and validation split (5,991 lines). Contains lines from all 9 seasons, every episode, but may be complete.
8
+
9
+
10
+ Lines are annotated with an ID number, season number, episode number, scene number (within the episode), speaker name, and whether or not the text came from a deleted scene. Here is an example:
11
+
12
+ ```
13
+ > dataset["val"][0]
14
+ {'id': 3735,
15
+ 'season': 2,
16
+ 'episode': 5,
17
+ 'scene': 32,
18
+ 'line_text': 'No, you have the power to undo it.',
19
+ 'speaker': 'Creed',
20
+ 'deleted': False}
21
+ ```