deqing commited on
Commit
794f716
·
verified ·
1 Parent(s): 1b37551

Upload sharded deduplicated dataset

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +45 -12
  2. train/train_large_shard_0/data-00000-of-00007.arrow +3 -0
  3. train/train_large_shard_0/data-00001-of-00007.arrow +3 -0
  4. train/train_large_shard_0/data-00002-of-00007.arrow +3 -0
  5. train/train_large_shard_0/data-00003-of-00007.arrow +3 -0
  6. train/train_large_shard_0/data-00004-of-00007.arrow +3 -0
  7. train/train_large_shard_0/data-00005-of-00007.arrow +3 -0
  8. train/train_large_shard_0/data-00006-of-00007.arrow +3 -0
  9. train/train_large_shard_0/dataset_info.json +20 -0
  10. train/train_large_shard_0/state.json +35 -0
  11. train/train_large_shard_1/data-00000-of-00008.arrow +3 -0
  12. train/train_large_shard_1/data-00001-of-00008.arrow +3 -0
  13. train/train_large_shard_1/data-00002-of-00008.arrow +3 -0
  14. train/train_large_shard_1/data-00003-of-00008.arrow +3 -0
  15. train/train_large_shard_1/data-00004-of-00008.arrow +3 -0
  16. train/train_large_shard_1/data-00005-of-00008.arrow +3 -0
  17. train/train_large_shard_1/data-00006-of-00008.arrow +3 -0
  18. train/train_large_shard_1/data-00007-of-00008.arrow +3 -0
  19. train/train_large_shard_1/dataset_info.json +20 -0
  20. train/train_large_shard_1/state.json +38 -0
  21. train/train_large_shard_10/data-00000-of-00007.arrow +3 -0
  22. train/train_large_shard_10/data-00001-of-00007.arrow +3 -0
  23. train/train_large_shard_10/data-00002-of-00007.arrow +3 -0
  24. train/train_large_shard_10/data-00003-of-00007.arrow +3 -0
  25. train/train_large_shard_10/data-00004-of-00007.arrow +3 -0
  26. train/train_large_shard_10/data-00005-of-00007.arrow +3 -0
  27. train/train_large_shard_10/data-00006-of-00007.arrow +3 -0
  28. train/train_large_shard_10/dataset_info.json +20 -0
  29. train/train_large_shard_10/state.json +35 -0
  30. train/train_large_shard_11/data-00000-of-00008.arrow +3 -0
  31. train/train_large_shard_11/data-00001-of-00008.arrow +3 -0
  32. train/train_large_shard_11/data-00002-of-00008.arrow +3 -0
  33. train/train_large_shard_11/data-00003-of-00008.arrow +3 -0
  34. train/train_large_shard_11/data-00004-of-00008.arrow +3 -0
  35. train/train_large_shard_11/data-00005-of-00008.arrow +3 -0
  36. train/train_large_shard_11/data-00006-of-00008.arrow +3 -0
  37. train/train_large_shard_11/data-00007-of-00008.arrow +3 -0
  38. train/train_large_shard_11/dataset_info.json +20 -0
  39. train/train_large_shard_11/state.json +38 -0
  40. train/train_large_shard_12/data-00000-of-00008.arrow +3 -0
  41. train/train_large_shard_12/data-00001-of-00008.arrow +3 -0
  42. train/train_large_shard_12/data-00002-of-00008.arrow +3 -0
  43. train/train_large_shard_12/data-00003-of-00008.arrow +3 -0
  44. train/train_large_shard_12/data-00004-of-00008.arrow +3 -0
  45. train/train_large_shard_12/data-00005-of-00008.arrow +3 -0
  46. train/train_large_shard_12/data-00006-of-00008.arrow +3 -0
  47. train/train_large_shard_12/data-00007-of-00008.arrow +3 -0
  48. train/train_large_shard_12/dataset_info.json +20 -0
  49. train/train_large_shard_12/state.json +38 -0
  50. train/train_large_shard_2/data-00000-of-00008.arrow +3 -0
README.md CHANGED
@@ -2,28 +2,50 @@
2
 
3
  ## Overview
4
 
5
- This dataset is a curated mixture of high-quality text data designed for large language model pre-training, inspired by the Qwen3 methodology.
6
 
7
  ## Dataset Statistics
8
 
9
- **Total Size:** 10.19 billion tokens
 
 
10
 
11
- ### Data Sources
12
 
13
- - **dclm_baseline**: 6.21B tokens (60.92%) - 4,973,695 documents
14
- - **mini_pile**: 1.43B tokens (14.04%) - 999,249 documents
15
- - **common_corpus**: 1.01B tokens (9.87%) - 246,160 documents
16
- - **the_stack**: 0.96B tokens (9.4%) - 248,650 documents
17
- - **math_pile**: 0.59B tokens (5.77%) - 66,729 documents
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
 
20
  ## Data Processing Pipeline
21
 
22
  1. **Data Collection**: Sourced from multiple high-quality datasets
23
- 2. **Standardization**: All data transformed to consistent format with `text`, `info`, and `source_data` fields
24
- 3. **Exact Deduplication**: Removed identical documents
25
- 4. **Near Deduplication**: Used MinHashLSH with Jaccard similarity threshold of 0.85
26
- 5. **Quality Filtering**: Applied content-based filtering during processing
 
 
27
 
28
  ## Data Format
29
 
@@ -32,6 +54,12 @@ Each example contains:
32
  - `info`: Metadata from the original dataset (as string)
33
  - `source_data`: Source dataset identifier
34
 
 
 
 
 
 
 
35
  ## Tokenization
36
 
37
  Token counts were computed using the Llama3 tokenizer (`meta-llama/Meta-Llama-3-8B`).
@@ -41,7 +69,12 @@ Token counts were computed using the Llama3 tokenizer (`meta-llama/Meta-Llama-3-
41
  ```python
42
  from datasets import load_dataset
43
 
 
44
  dataset = load_dataset("bluelightai-dev/qwen_clt_pretrain_data")
 
 
 
 
45
  ```
46
 
47
  ## Dataset Sources
 
2
 
3
  ## Overview
4
 
5
+ This dataset is a curated mixture of high-quality text data designed for large language model pre-training, inspired by the Qwen3 methodology. The dataset includes both training and validation splits.
6
 
7
  ## Dataset Statistics
8
 
9
+ **Total Size:** 10.58 billion tokens
10
+ - **Training Split:** 10.01 billion tokens (94.6%)
11
+ - **Validation Split:** 0.57 billion tokens (5.4%)
12
 
13
+ ### Data Sources (Combined)
14
 
15
+ - **dclm_baseline**: 6.36B tokens (60.13%) - 5,100,585 documents
16
+ - **mini_pile**: 1.43B tokens (13.52%) - 999,518 documents
17
+ - **common_corpus**: 1.03B tokens (9.71%) - 252,785 documents
18
+ - **the_stack**: 0.97B tokens (9.2%) - 254,809 documents
19
+ - **math_pile**: 0.79B tokens (7.43%) - 72,559 documents
20
+
21
+
22
+ ### Training Split Statistics
23
+
24
+ - **dclm_baseline**: 6.04B tokens (60.33%) - 4,841,522 documents
25
+ - **mini_pile**: 1.36B tokens (13.58%) - 949,537 documents
26
+ - **common_corpus**: 0.94B tokens (9.4%) - 233,049 documents
27
+ - **the_stack**: 0.88B tokens (8.83%) - 234,915 documents
28
+ - **math_pile**: 0.79B tokens (7.85%) - 72,554 documents
29
+
30
+
31
+ ### Validation Split Statistics
32
+
33
+ - **dclm_baseline**: 0.32B tokens (56.56%) - 259,063 documents
34
+ - **the_stack**: 0.09B tokens (15.85%) - 19,894 documents
35
+ - **common_corpus**: 0.09B tokens (15.1%) - 19,736 documents
36
+ - **mini_pile**: 0.07B tokens (12.48%) - 49,981 documents
37
+ - **math_pile**: 0.0B tokens (0.0%) - 5 documents
38
 
39
 
40
  ## Data Processing Pipeline
41
 
42
  1. **Data Collection**: Sourced from multiple high-quality datasets
43
+ 2. **Standardization**: All data transformed to consistent format with `text`, `info`, and `source_data` fields
44
+ 3. **Train/Validation Split**: Created 95%/5% splits within each source dataset
45
+ 4. **Exact Deduplication**: Removed identical documents within each split
46
+ 5. **Near Deduplication**: Used MinHashLSH with Jaccard similarity threshold of 0.85
47
+ 6. **Quality Filtering**: Applied content-based filtering during processing
48
+ 7. **Shuffling**: Applied shuffling within each large shard for better data distribution
49
 
50
  ## Data Format
51
 
 
54
  - `info`: Metadata from the original dataset (as string)
55
  - `source_data`: Source dataset identifier
56
 
57
+ ## Splits
58
+
59
+ The dataset contains two splits:
60
+ - `train`: Training data (95% of each source dataset)
61
+ - `validation`: Validation data (5% of each source dataset)
62
+
63
  ## Tokenization
64
 
65
  Token counts were computed using the Llama3 tokenizer (`meta-llama/Meta-Llama-3-8B`).
 
69
  ```python
70
  from datasets import load_dataset
71
 
72
+ # Load the entire dataset
73
  dataset = load_dataset("bluelightai-dev/qwen_clt_pretrain_data")
74
+
75
+ # Load specific splits
76
+ train_dataset = load_dataset("bluelightai-dev/qwen_clt_pretrain_data", split="train")
77
+ val_dataset = load_dataset("bluelightai-dev/qwen_clt_pretrain_data", split="validation")
78
  ```
79
 
80
  ## Dataset Sources
train/train_large_shard_0/data-00000-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1156819c16576a18443a2182f496483a3e48e0ec06435797ad768700275ec75
3
+ size 494804720
train/train_large_shard_0/data-00001-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e6390ffd53f443fbcc934b12f81deadc65151a6f193cbc37044dedb7bf70a5d
3
+ size 496959328
train/train_large_shard_0/data-00002-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3ba2ab31ee8c5741573b6df840fb78e40879d73e4d43ecddd99a6367ed95862
3
+ size 493688240
train/train_large_shard_0/data-00003-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e8c996f93beda295f2be6fe41490e8880ee7243b29dfc2b05f343c29c3e839c
3
+ size 491305520
train/train_large_shard_0/data-00004-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c9aac7ddde8186d5919fccc4369cd48d1e1e3bb89eb7ca00b3a6c14ce05b413
3
+ size 501024616
train/train_large_shard_0/data-00005-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86144679d25cfce3cf2d16a01a3e476d386ebb66e6030f964fa57d3c53ca845b
3
+ size 496143384
train/train_large_shard_0/data-00006-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e759f3c6ede25f44cc22e8295543b36c15b271b079d3adfa3758681ff74fd79a
3
+ size 498225552
train/train_large_shard_0/dataset_info.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "text": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "source_data": {
10
+ "dtype": "string",
11
+ "_type": "Value"
12
+ },
13
+ "info": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ }
17
+ },
18
+ "homepage": "",
19
+ "license": ""
20
+ }
train/train_large_shard_0/state.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00007.arrow"
5
+ },
6
+ {
7
+ "filename": "data-00001-of-00007.arrow"
8
+ },
9
+ {
10
+ "filename": "data-00002-of-00007.arrow"
11
+ },
12
+ {
13
+ "filename": "data-00003-of-00007.arrow"
14
+ },
15
+ {
16
+ "filename": "data-00004-of-00007.arrow"
17
+ },
18
+ {
19
+ "filename": "data-00005-of-00007.arrow"
20
+ },
21
+ {
22
+ "filename": "data-00006-of-00007.arrow"
23
+ }
24
+ ],
25
+ "_fingerprint": "e6060cd3d1dd859f",
26
+ "_format_columns": [
27
+ "info",
28
+ "source_data",
29
+ "text"
30
+ ],
31
+ "_format_kwargs": {},
32
+ "_format_type": null,
33
+ "_output_all_columns": false,
34
+ "_split": null
35
+ }
train/train_large_shard_1/data-00000-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:660220cb816cfcfc63f80143bcf9f011a3e81aee9f3b49d33f80555a85f07f3a
3
+ size 469713032
train/train_large_shard_1/data-00001-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d29b5ecbb0ddf8503e0ef5dbce4c38efc168f2597122888b49dcb7a3e45e14d2
3
+ size 463449288
train/train_large_shard_1/data-00002-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c6fec0e04ed4de70acb65a2d62314cf20aededb150ee02f00e289d70595928f
3
+ size 463298240
train/train_large_shard_1/data-00003-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7fc3a5cdb4b95b48f30a8f79ec178ddaee0509ee9fe54e3497443fc1136fb7f
3
+ size 466623120
train/train_large_shard_1/data-00004-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1e49c1ce4a474274d48d9290211bd2c779b8ab43b75b37c95d5cc41746631b9
3
+ size 463874864
train/train_large_shard_1/data-00005-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4fe53f574930ad0348f5e7b2bd135a4e135f9d43db3a1bc2c6e9d86b99aff14
3
+ size 473356784
train/train_large_shard_1/data-00006-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45208a4e68358c91cf883ae55cc0e988db364ef62b3adb062f5ba05388611c64
3
+ size 468900472
train/train_large_shard_1/data-00007-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe976e115c3953aa3deb21e8f94152514c98ee2c1477f31355fa232c0a31f069
3
+ size 468545024
train/train_large_shard_1/dataset_info.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "text": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "source_data": {
10
+ "dtype": "string",
11
+ "_type": "Value"
12
+ },
13
+ "info": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ }
17
+ },
18
+ "homepage": "",
19
+ "license": ""
20
+ }
train/train_large_shard_1/state.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00008.arrow"
5
+ },
6
+ {
7
+ "filename": "data-00001-of-00008.arrow"
8
+ },
9
+ {
10
+ "filename": "data-00002-of-00008.arrow"
11
+ },
12
+ {
13
+ "filename": "data-00003-of-00008.arrow"
14
+ },
15
+ {
16
+ "filename": "data-00004-of-00008.arrow"
17
+ },
18
+ {
19
+ "filename": "data-00005-of-00008.arrow"
20
+ },
21
+ {
22
+ "filename": "data-00006-of-00008.arrow"
23
+ },
24
+ {
25
+ "filename": "data-00007-of-00008.arrow"
26
+ }
27
+ ],
28
+ "_fingerprint": "d712302330ddd0cc",
29
+ "_format_columns": [
30
+ "info",
31
+ "source_data",
32
+ "text"
33
+ ],
34
+ "_format_kwargs": {},
35
+ "_format_type": null,
36
+ "_output_all_columns": false,
37
+ "_split": null
38
+ }
train/train_large_shard_10/data-00000-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e84f884e721a1d31ddea7c9e7920a67b8acd5c9313326451796cac775e1bd41
3
+ size 479289304
train/train_large_shard_10/data-00001-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:478f4a32540c0609efdcfba0692df31cd8373dd5507f7a6cd2d3c93fecc7bcd0
3
+ size 473687096
train/train_large_shard_10/data-00002-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5013c096453ebb8b03896df3df9cfdc2c2776f30f4b420f49e796b8cb3a466f
3
+ size 479393448
train/train_large_shard_10/data-00003-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:509cbf698c73f5336ecbc9853a1e7aa66a755eb503822d94b9cf1ec0d967875d
3
+ size 475860344
train/train_large_shard_10/data-00004-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a28292f634e5936c3f84891e6946c1e784985dc0c583937c0568d8f6ba4f91e
3
+ size 476820072
train/train_large_shard_10/data-00005-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:058f98a2a4494758060250911fc942f1b717f8d3b99e360e115c2981187cccdc
3
+ size 479541344
train/train_large_shard_10/data-00006-of-00007.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b657a5446ee109588a1f20d054abaced72f3704af074a5d17e95b94c3b6baaa
3
+ size 477785304
train/train_large_shard_10/dataset_info.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "text": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "source_data": {
10
+ "dtype": "string",
11
+ "_type": "Value"
12
+ },
13
+ "info": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ }
17
+ },
18
+ "homepage": "",
19
+ "license": ""
20
+ }
train/train_large_shard_10/state.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00007.arrow"
5
+ },
6
+ {
7
+ "filename": "data-00001-of-00007.arrow"
8
+ },
9
+ {
10
+ "filename": "data-00002-of-00007.arrow"
11
+ },
12
+ {
13
+ "filename": "data-00003-of-00007.arrow"
14
+ },
15
+ {
16
+ "filename": "data-00004-of-00007.arrow"
17
+ },
18
+ {
19
+ "filename": "data-00005-of-00007.arrow"
20
+ },
21
+ {
22
+ "filename": "data-00006-of-00007.arrow"
23
+ }
24
+ ],
25
+ "_fingerprint": "dbbcccaa6293069d",
26
+ "_format_columns": [
27
+ "info",
28
+ "source_data",
29
+ "text"
30
+ ],
31
+ "_format_kwargs": {},
32
+ "_format_type": null,
33
+ "_output_all_columns": false,
34
+ "_split": null
35
+ }
train/train_large_shard_11/data-00000-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88e20a6186a37f22ade37af4960f67cd92489512dabc838e0a7603e0ad3dd452
3
+ size 464515640
train/train_large_shard_11/data-00001-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64d481e95752219c639626a0e5eda7a0b08bff97252f118f8ecbf272d72f9503
3
+ size 463411992
train/train_large_shard_11/data-00002-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9de6998ca3223b3ba22feed785bd4a7e7dccb01ac1080e7ed16fc37a7b0c67db
3
+ size 467478864
train/train_large_shard_11/data-00003-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e424de1842a3521f1518d38e9b0784a647b82265623cb7b852b93ade933a6488
3
+ size 464119520
train/train_large_shard_11/data-00004-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11e669fc4715776a68df7a3d5470d5dff23eef2edfdacee870773291a697b73d
3
+ size 466500240
train/train_large_shard_11/data-00005-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9807f52787eba83b4c95eeae1eeee634d56035334c909e55fb0819946d37e996
3
+ size 460693800
train/train_large_shard_11/data-00006-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3446340681b8b5e2139e4c393027b195df296d658f67d7f54a2cfd35942d5a59
3
+ size 458568872
train/train_large_shard_11/data-00007-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbef075fe85bab3d29358c2536548840ffc6b83e6415563089e00aebbcf9ffbd
3
+ size 461036864
train/train_large_shard_11/dataset_info.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "text": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "source_data": {
10
+ "dtype": "string",
11
+ "_type": "Value"
12
+ },
13
+ "info": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ }
17
+ },
18
+ "homepage": "",
19
+ "license": ""
20
+ }
train/train_large_shard_11/state.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00008.arrow"
5
+ },
6
+ {
7
+ "filename": "data-00001-of-00008.arrow"
8
+ },
9
+ {
10
+ "filename": "data-00002-of-00008.arrow"
11
+ },
12
+ {
13
+ "filename": "data-00003-of-00008.arrow"
14
+ },
15
+ {
16
+ "filename": "data-00004-of-00008.arrow"
17
+ },
18
+ {
19
+ "filename": "data-00005-of-00008.arrow"
20
+ },
21
+ {
22
+ "filename": "data-00006-of-00008.arrow"
23
+ },
24
+ {
25
+ "filename": "data-00007-of-00008.arrow"
26
+ }
27
+ ],
28
+ "_fingerprint": "44ff331e4232a62b",
29
+ "_format_columns": [
30
+ "info",
31
+ "source_data",
32
+ "text"
33
+ ],
34
+ "_format_kwargs": {},
35
+ "_format_type": null,
36
+ "_output_all_columns": false,
37
+ "_split": null
38
+ }
train/train_large_shard_12/data-00000-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ca3fa31483f139fa828ef4fc6fe60236351b8467d98c4cf53268b71248a8a28
3
+ size 493652760
train/train_large_shard_12/data-00001-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f7f3969284c9b304d1934c63b99a8dff50b26799e22589b7a489851ccf42390
3
+ size 493194768
train/train_large_shard_12/data-00002-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e1b9712150c0794179067ab0f1f005577bec387406165373187b2eca0cbce9b
3
+ size 498856248
train/train_large_shard_12/data-00003-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79f9917b2c39b7179b4f5e1de4f985f623695d493cae9d14671358a240d30661
3
+ size 498160288
train/train_large_shard_12/data-00004-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b3b3dcc9b9585a74525a85734bb9017ca9e6815d1a011bf6218b1236ca60c5d
3
+ size 497327840
train/train_large_shard_12/data-00005-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c24345d84e0432a388e81526cca9d7a0dd4072ba5f96d70474fbd53db97eedb4
3
+ size 499273800
train/train_large_shard_12/data-00006-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98686d968695e5aed5418175ad0efa386ece4344c131253bfb7ab1dad7bf1618
3
+ size 502198616
train/train_large_shard_12/data-00007-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1e5afaf9ede8f4a3577e8ff2a7db8449415089e76c841f3a67fdf18694a733d
3
+ size 507704176
train/train_large_shard_12/dataset_info.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "text": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "source_data": {
10
+ "dtype": "string",
11
+ "_type": "Value"
12
+ },
13
+ "info": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ }
17
+ },
18
+ "homepage": "",
19
+ "license": ""
20
+ }
train/train_large_shard_12/state.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00008.arrow"
5
+ },
6
+ {
7
+ "filename": "data-00001-of-00008.arrow"
8
+ },
9
+ {
10
+ "filename": "data-00002-of-00008.arrow"
11
+ },
12
+ {
13
+ "filename": "data-00003-of-00008.arrow"
14
+ },
15
+ {
16
+ "filename": "data-00004-of-00008.arrow"
17
+ },
18
+ {
19
+ "filename": "data-00005-of-00008.arrow"
20
+ },
21
+ {
22
+ "filename": "data-00006-of-00008.arrow"
23
+ },
24
+ {
25
+ "filename": "data-00007-of-00008.arrow"
26
+ }
27
+ ],
28
+ "_fingerprint": "2f89b8157d54cd55",
29
+ "_format_columns": [
30
+ "info",
31
+ "source_data",
32
+ "text"
33
+ ],
34
+ "_format_kwargs": {},
35
+ "_format_type": null,
36
+ "_output_all_columns": false,
37
+ "_split": null
38
+ }
train/train_large_shard_2/data-00000-of-00008.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:615f240cc6c1cb63e13684862ff9110f5c7bc67d5505471a08b5fb70290fa003
3
+ size 500861728