File size: 1,407 Bytes
516dbd7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: short_book_title
    dtype: string
  - name: publication_date
    dtype: int32
  - name: url
    dtype: string
  - name: text
    dtype: string
  splits:
  - name: train
    num_examples: 28602
  - name: validation
    num_examples: 50
  - name: test
    num_examples: 100
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*.jsonl
  - split: validation
    path: data/validation-*.jsonl
  - split: test
    path: data/test-*.jsonl
---

# PG19 JSONL

This dataset is a JSONL conversion of the Hugging Face dataset
[`emozilla/pg19`](https://huggingface.co/datasets/emozilla/pg19).
The source dataset is a parquet version of
[`pg19`](https://huggingface.co/datasets/pg19).

## Dataset Structure

The dataset has three splits:

- `train`: 28,602 rows in 23 JSONL shards
- `validation`: 50 rows in 1 JSONL shard
- `test`: 100 rows in 1 JSONL shard

Each line is a JSON object with the same fields as the source parquet dataset:

- `short_book_title`: short title for the book
- `publication_date`: publication year
- `url`: Project Gutenberg URL
- `text`: book text

## Source

Converted from [`emozilla/pg19`](https://huggingface.co/datasets/emozilla/pg19).
For upstream dataset-building details, curation notes, and licensing context,
see the source dataset card and the original
[`pg19`](https://huggingface.co/datasets/pg19) dataset.