Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
Libraries:
Datasets
pandas
License:
File size: 838 Bytes
c8c936a
 
61b67c4
c8c936a
 
 
02cd824
 
 
 
9231eeb
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
license: cc0-1.0
language: en
---

# Allison Parrish's Gutenberg Poetry Corpus

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). 
> 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.

This dataset contains 3,085,117 lines of poetry each with its corresponding id from project Gutenberg.

```python
Dataset({
    features: ['line', 'gutenberg_id'],
    num_rows: 3085117
})
```
A row looks like this:
```python
{'line': 'And retreated, baffled, beaten,', 'gutenberg_id': 19}
```