cakiki commited on
Commit
9231eeb
1 Parent(s): 61b67c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -4,6 +4,18 @@ language: en
4
  ---
5
 
6
  # Allison Parrish's Gutenberg Poetry Corpus
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
  This corpus was originally published under the CC0 license by [Allison Parrish](https://www.decontextualize.com/) with an [accompanying GitHub repository](https://github.com/aparrish/gutenberg-poetry-corpus).
9
  > This is a Gutenberg Poetry corpus, comprised of approximately three million lines of poetry extracted from hundreds of books from Project Gutenberg. The corpus is especially suited to applications in creative computational poetic text generation.
 
4
  ---
5
 
6
  # Allison Parrish's Gutenberg Poetry Corpus
7
+ This dataset contains 3,085,117 lines of poetry each with its corresponding id from project Gutenberg.
8
+
9
+ ```python
10
+ Dataset({
11
+ features: ['line', 'gutenberg_id'],
12
+ num_rows: 3085117
13
+ })
14
+ ```
15
+ A row looks like this:
16
+ ```python
17
+ {'line': 'And retreated, baffled, beaten,', 'gutenberg_id': 19}
18
+ ```
19
 
20
  This corpus was originally published under the CC0 license by [Allison Parrish](https://www.decontextualize.com/) with an [accompanying GitHub repository](https://github.com/aparrish/gutenberg-poetry-corpus).
21
  > This is a Gutenberg Poetry corpus, comprised of approximately three million lines of poetry extracted from hundreds of books from Project Gutenberg. The corpus is especially suited to applications in creative computational poetic text generation.