virtualkevin commited on
Commit
516dbd7
·
verified ·
1 Parent(s): 66dafd1

Convert PG19 dataset to JSONL

Browse files
.gitattributes CHANGED
@@ -58,3 +58,28 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ data/test-00000-of-00001-29a571947c0b5ccc.jsonl filter=lfs diff=lfs merge=lfs -text
62
+ data/train-00000-of-00023-5263dc4323e881d2.jsonl filter=lfs diff=lfs merge=lfs -text
63
+ data/train-00001-of-00023-2b13c68dbeba63b5.jsonl filter=lfs diff=lfs merge=lfs -text
64
+ data/train-00002-of-00023-8e4dd6b70d51dfcf.jsonl filter=lfs diff=lfs merge=lfs -text
65
+ data/train-00003-of-00023-e7f0ba0d3c2eb6c0.jsonl filter=lfs diff=lfs merge=lfs -text
66
+ data/train-00004-of-00023-3f9e7e096fa07f4b.jsonl filter=lfs diff=lfs merge=lfs -text
67
+ data/train-00005-of-00023-87dece6a0ab708e8.jsonl filter=lfs diff=lfs merge=lfs -text
68
+ data/train-00006-of-00023-c50fea56d0518a87.jsonl filter=lfs diff=lfs merge=lfs -text
69
+ data/train-00007-of-00023-e9fea5c158e172e2.jsonl filter=lfs diff=lfs merge=lfs -text
70
+ data/train-00008-of-00023-275017526d706c9d.jsonl filter=lfs diff=lfs merge=lfs -text
71
+ data/train-00009-of-00023-f07a29af90b71085.jsonl filter=lfs diff=lfs merge=lfs -text
72
+ data/train-00010-of-00023-dd5d8583a9f6a549.jsonl filter=lfs diff=lfs merge=lfs -text
73
+ data/train-00011-of-00023-6c0bc91e6df2e661.jsonl filter=lfs diff=lfs merge=lfs -text
74
+ data/train-00012-of-00023-78d820574bddc6bb.jsonl filter=lfs diff=lfs merge=lfs -text
75
+ data/train-00013-of-00023-5b853732c713dded.jsonl filter=lfs diff=lfs merge=lfs -text
76
+ data/train-00014-of-00023-54b567998cd5eb4b.jsonl filter=lfs diff=lfs merge=lfs -text
77
+ data/train-00015-of-00023-7a78b1e66cfe52de.jsonl filter=lfs diff=lfs merge=lfs -text
78
+ data/train-00016-of-00023-8269d10108995a28.jsonl filter=lfs diff=lfs merge=lfs -text
79
+ data/train-00017-of-00023-e240b232c0daddca.jsonl filter=lfs diff=lfs merge=lfs -text
80
+ data/train-00018-of-00023-f59d477d80180c78.jsonl filter=lfs diff=lfs merge=lfs -text
81
+ data/train-00019-of-00023-198af082bd917d87.jsonl filter=lfs diff=lfs merge=lfs -text
82
+ data/train-00020-of-00023-f9b058c5e9338514.jsonl filter=lfs diff=lfs merge=lfs -text
83
+ data/train-00021-of-00023-e221306b7359a366.jsonl filter=lfs diff=lfs merge=lfs -text
84
+ data/train-00022-of-00023-5a956eb2a5d6cab5.jsonl filter=lfs diff=lfs merge=lfs -text
85
+ data/validation-00000-of-00001-0f92e2337f79aeac.jsonl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: short_book_title
5
+ dtype: string
6
+ - name: publication_date
7
+ dtype: int32
8
+ - name: url
9
+ dtype: string
10
+ - name: text
11
+ dtype: string
12
+ splits:
13
+ - name: train
14
+ num_examples: 28602
15
+ - name: validation
16
+ num_examples: 50
17
+ - name: test
18
+ num_examples: 100
19
+ configs:
20
+ - config_name: default
21
+ data_files:
22
+ - split: train
23
+ path: data/train-*.jsonl
24
+ - split: validation
25
+ path: data/validation-*.jsonl
26
+ - split: test
27
+ path: data/test-*.jsonl
28
+ ---
29
+
30
+ # PG19 JSONL
31
+
32
+ This dataset is a JSONL conversion of the Hugging Face dataset
33
+ [`emozilla/pg19`](https://huggingface.co/datasets/emozilla/pg19).
34
+ The source dataset is a parquet version of
35
+ [`pg19`](https://huggingface.co/datasets/pg19).
36
+
37
+ ## Dataset Structure
38
+
39
+ The dataset has three splits:
40
+
41
+ - `train`: 28,602 rows in 23 JSONL shards
42
+ - `validation`: 50 rows in 1 JSONL shard
43
+ - `test`: 100 rows in 1 JSONL shard
44
+
45
+ Each line is a JSON object with the same fields as the source parquet dataset:
46
+
47
+ - `short_book_title`: short title for the book
48
+ - `publication_date`: publication year
49
+ - `url`: Project Gutenberg URL
50
+ - `text`: book text
51
+
52
+ ## Source
53
+
54
+ Converted from [`emozilla/pg19`](https://huggingface.co/datasets/emozilla/pg19).
55
+ For upstream dataset-building details, curation notes, and licensing context,
56
+ see the source dataset card and the original
57
+ [`pg19`](https://huggingface.co/datasets/pg19) dataset.
data/test-00000-of-00001-29a571947c0b5ccc.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fcbb7ba3e52a3465f76bd4da8a0c4fecb7da6999af44ecd4efb066c816bf4918
3
+ size 41470062
data/train-00000-of-00023-5263dc4323e881d2.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c62802456059fc28660282bf0c05bad0516eb0dfc8858e57eab56a0019f322f
3
+ size 493050996
data/train-00001-of-00023-2b13c68dbeba63b5.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38af922948c76eac21caba9c25881df9b42c1d5e293a141976e9480379fa06ba
3
+ size 502694390
data/train-00002-of-00023-8e4dd6b70d51dfcf.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57d5c1bda9534fffc67c46971171d06b53cf96dcc7cb34dcf5c15edb678d6f73
3
+ size 435474568
data/train-00003-of-00023-e7f0ba0d3c2eb6c0.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c1e306e351d3d711f1b9859f1c1eb991007cf5725274b949266f45e34651141
3
+ size 438693469
data/train-00004-of-00023-3f9e7e096fa07f4b.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6591e3bf90a654f8c57477fdc38a3abf48a2319d1e78ddc7006adf2f11e3d321
3
+ size 463883245
data/train-00005-of-00023-87dece6a0ab708e8.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80e768b4075ed5b04240389982311c743fe5ea078b0d1bc44d28d4895cb554d8
3
+ size 497063995
data/train-00006-of-00023-c50fea56d0518a87.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e298b42c837445467346edc74eae16f29f653e4aa810daf1886fa3f59ca5af6
3
+ size 472468169
data/train-00007-of-00023-e9fea5c158e172e2.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80f3ee0251f7bbb9a5bb633f650fa485f3df28adbab7323313f3c739cf63c474
3
+ size 494709767
data/train-00008-of-00023-275017526d706c9d.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c84e717270c72cecbb378b71e837c97497b93b29efb3b1f3194072505b9c4e2b
3
+ size 498006443
data/train-00009-of-00023-f07a29af90b71085.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:815a7180f1df8cf9757d9dfbb5eceabbdd35b9935673aac6aa586b29eee5262a
3
+ size 481246193
data/train-00010-of-00023-dd5d8583a9f6a549.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:817318838e324493cfe61ff8302f040229dbc310ab41c56938def4cacb70ce97
3
+ size 534418981
data/train-00011-of-00023-6c0bc91e6df2e661.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fab6fdc56011c30400f65b67ea192e8470e00187dd047a58cec6d4c6fbc5d5a
3
+ size 530009062
data/train-00012-of-00023-78d820574bddc6bb.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e75069db8811171252209965ff3a033290e28b3b4122b5cf717e8aa118dae776
3
+ size 573736288
data/train-00013-of-00023-5b853732c713dded.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:842b53fed4c1a482f7607e301052dae342c15c611d092d3eac8e7b17b016c39b
3
+ size 541983679
data/train-00014-of-00023-54b567998cd5eb4b.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b15226d846552377109b4e9cffc0410fcf8838e85c937d52db072bada4ffcf05
3
+ size 518440933
data/train-00015-of-00023-7a78b1e66cfe52de.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3ea33135920a1bd5946fa2130770aecae7663d792e7e2f4d8fbd0a64cbb1c75
3
+ size 531958496
data/train-00016-of-00023-8269d10108995a28.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9354b870a97de2007227a0b3b590f6cf6ecf03730c1c69f7ec621d9ce4923ac
3
+ size 545298397
data/train-00017-of-00023-e240b232c0daddca.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca213a9925da31a82f50e2dcff58a0db56d97bfcb0468754a0b26bb56ff958c5
3
+ size 554536069
data/train-00018-of-00023-f59d477d80180c78.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4858250306e27de23e3678b9020a18da7e2f029fba9234fbd4cc623a553c3b9d
3
+ size 518903565
data/train-00019-of-00023-198af082bd917d87.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5864064fc5c64b841ce82f70eaaa7d197ed5e4952c6de087634a58871b455f67
3
+ size 553869517
data/train-00020-of-00023-f9b058c5e9338514.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2e0c980a7c393cbbaf1fc11858eaf3918005261d893dcb22dd75f908d0b2bdb
3
+ size 538342536
data/train-00021-of-00023-e221306b7359a366.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e75d6e26f96fa2b1e8dedcf00919f6d8445ca05eacc34bd108f128687414bf96
3
+ size 509415373
data/train-00022-of-00023-5a956eb2a5d6cab5.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efb8206a4b0542d3dbfd6db10671cf633bc8a75a6fa522e730853a0ed770c6db
3
+ size 492405948
data/validation-00000-of-00001-0f92e2337f79aeac.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f1582c6db8b1e2b88f875b4bfb10188675ce96d1720cf771c24f925d0c197aa
3
+ size 17789312