Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
< 1K
Tags:
shakespeare
License:
Update README.md
Browse files
README.md
CHANGED
@@ -32,4 +32,25 @@ tags:
|
|
32 |
- shakespeare
|
33 |
size_categories:
|
34 |
- n<1K
|
35 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
- shakespeare
|
33 |
size_categories:
|
34 |
- n<1K
|
35 |
+
---
|
36 |
+
# shakespearefirstfolio
|
37 |
+
|
38 |
+
## About
|
39 |
+
🎭 Shakespeare's First Folio (a collection of 36 of Shakespeare's plays) as a Hugging Face dataset!
|
40 |
+
|
41 |
+
## Description
|
42 |
+
In 2015, Andrej Karpathy wrote a post called "The Unreasonable Effectiveness of Recurrent Neural Networks" in his blog. For the needs of this post, he created tinyshakespeare, a subset of Shakespeare's works in a single 40,000 lines file. Surprisingly, language models trained from scratch on this tiny dataset can produce samples that look very close to those written by Shakespeare himself.
|
43 |
+
|
44 |
+
Since then, tinyshakespeare has been the defacto dataset used as a first test while developing language models. Unfortunately, it has some problems:
|
45 |
+
1) It is a single file, which makes further processing difficult
|
46 |
+
2) It contains only a subset of Shakespeare's plays
|
47 |
+
3) It is not clear exactly what works and to what extend are included
|
48 |
+
|
49 |
+
This dataset tries to address these problems.
|
50 |
+
|
51 |
+
It was manually collected from [Folger Shakespeare Library](www.folger.edu).
|
52 |
+
|
53 |
+
## Usage
|
54 |
+
import datasets
|
55 |
+
|
56 |
+
dataset = datasets.load_dataset("gvlassis/shakespearefirstfolio")
|