Dan Fu commited on
Commit
be7b043
1 Parent(s): 10366ea

HuggingFace downloadable

Browse files
README.md CHANGED
@@ -7,7 +7,13 @@ pretty_name: Red Pajama 1T
7
  ---
8
  ### Getting Started
9
 
10
- The dataset consists of 2084 jsonl files. Download the entire dataset using the following command:
 
 
 
 
 
 
11
  ```
12
  wget -i https://data.together.xyz/redpajama-data-1T/v1.0.0/urls.txt
13
  ```
@@ -42,7 +48,8 @@ The dataset structure is as follows:
42
  ```
43
  {
44
  "text": ...,
45
- "meta": {"url": "...", "timestamp": "...", "source": "...", "language": "...", ...}
 
46
  }
47
  ```
48
 
 
7
  ---
8
  ### Getting Started
9
 
10
+ The dataset consists of 2084 jsonl files.
11
+ You can download the dataset using HuggingFace:
12
+ ```
13
+ ds = load_dataset("togethercomputer/RedPajama-Data-1T")
14
+ ```
15
+
16
+ Or you can directly download the files using the following command:
17
  ```
18
  wget -i https://data.together.xyz/redpajama-data-1T/v1.0.0/urls.txt
19
  ```
 
48
  ```
49
  {
50
  "text": ...,
51
+ "meta": {"url": "...", "timestamp": "...", "source": "...", "language": "...", ...},
52
+ "red_pajama_subset": "common_crawl" | "c4" | "github" | "books" | "arxiv" | "wikipedia" | "stackexchange"
53
  }
54
  ```
55
 
RedPajama-Data-1T.py ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright 2023 Together Computer
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # Lint as: python3
16
+ """RedPajama: An Open-Source, Clean-Room 1.2 Trillion Token Dataset."""
17
+
18
+
19
+ import json
20
+
21
+ import datasets
22
+
23
+
24
+ logger = datasets.logging.get_logger(__name__)
25
+
26
+
27
+ _DESCRIPTION = """\
28
+ RedPajama is a clean-room, fully open-source implementation of the LLaMa dataset.
29
+ """
30
+
31
+ _URL_LISTS = {
32
+ "arxiv": "urls/arxiv.txt",
33
+ "book": "urls/book.txt",
34
+ "c4": "urls/c4.txt",
35
+ "common_crawl": "urls/common_crawl.txt",
36
+ "github": "urls/github.txt",
37
+ "stackexchange": "urls/stackexchange.txt",
38
+ "wikipedia": "urls/wikipedia.txt",
39
+ }
40
+
41
+
42
+ class RedPajama1TConfig(datasets.BuilderConfig):
43
+ """BuilderConfig for RedPajama sample."""
44
+
45
+ def __init__(self, *args, subsets, **kwargs):
46
+ """BuilderConfig for RedPajama.
47
+ Args:
48
+ **kwargs: keyword arguments forwarded to super.
49
+ """
50
+ super(RedPajama1TConfig, self).__init__(**kwargs)
51
+
52
+ self.subsets = subsets
53
+
54
+
55
+ class RedPajama1T(datasets.GeneratorBasedBuilder):
56
+ """SQUAD: The Stanford Question Answering Dataset. Version 1.1."""
57
+
58
+ BUILDER_CONFIGS = [
59
+ RedPajama1TConfig(
60
+ subsets = list(_URL_LISTS.keys()),
61
+ name="plain_text",
62
+ version=datasets.Version("1.0.0", ""),
63
+ description="Plain text",
64
+ ),
65
+ ]
66
+
67
+ def _info(self):
68
+ return datasets.DatasetInfo(
69
+ description=_DESCRIPTION,
70
+ features=datasets.Features(
71
+ {
72
+ "text": datasets.Value("string"),
73
+ "meta": datasets.Value("string"),
74
+ "red_pajama_subset": datasets.Value("string"),
75
+ }
76
+ ),
77
+ supervised_keys=None,
78
+ )
79
+
80
+ def _split_generators(self, dl_manager):
81
+ url_lists = dl_manager.download_and_extract({
82
+ subset: _URL_LISTS[subset] for subset in self.config.subsets
83
+ })
84
+
85
+ urls = {}
86
+
87
+ for subset, url_list in url_lists.items():
88
+ with open(url_list, encoding="utf-8") as f:
89
+ urls[subset] = [line.strip() for line in f][:1]
90
+
91
+ downloaded_files = dl_manager.download(urls)
92
+
93
+ return [
94
+ datasets.SplitGenerator(
95
+ name=datasets.Split.TRAIN,
96
+ gen_kwargs = {
97
+ "files": {
98
+ subset: downloaded_files[subset]
99
+ for subset in self.config.subsets
100
+ }
101
+ }
102
+ )
103
+ ]
104
+
105
+ def _generate_examples(self, files):
106
+ """This function returns the examples in the raw (text) form."""
107
+ key = 0
108
+ for subset in files:
109
+ if subset == "common_crawl":
110
+ import zstandard as zstd
111
+
112
+ for path in files[subset]:
113
+ with zstd.open(open(path, "rb"), "rt", encoding="utf-8") as f:
114
+ for i, row in enumerate(f):
115
+ data = json.loads(row)
116
+ text = data["text"]
117
+ del data["text"]
118
+ yield key, {
119
+ "text": text,
120
+ "meta": json.dumps(data),
121
+ "red_pajama_subset": subset,
122
+ }
123
+ key += 1
124
+ else:
125
+ for path in files[subset]:
126
+ with open(path, encoding="utf-8") as f:
127
+ for i, row in enumerate(f):
128
+ data = json.loads(row)
129
+ yield key, {
130
+ "text": data["text"],
131
+ "meta": data["meta"],
132
+ "red_pajama_subset": subset,
133
+ }
134
+ key += 1
urls/arxiv.txt ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_023827cd-7ee8-42e6-aa7b-661731f4c70f.jsonl
2
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_024de5df-1b7f-447c-8c3a-51407d8d6732.jsonl
3
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_03232e26-be3f-4a28-a5d2-ee1d8c0e9831.jsonl
4
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_034e819a-cfcb-43c6-ad25-0232ad48823c.jsonl
5
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_077ae8de-a68e-47e7-95a6-6d82f8f4eeb9.jsonl
6
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_0af50072-df4c-4084-a833-cebbd046e70e.jsonl
7
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_0de84cfc-c080-471f-b139-1bf061db4feb.jsonl
8
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_0fbdd8ad-32d8-4228-9a40-e09dde689760.jsonl
9
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_11c659c1-ffbf-4455-abfd-058f6bbf4bb2.jsonl
10
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_1958455d-6543-4307-a081-d86ce0637f9a.jsonl
11
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_1982fb29-c4ed-4dd3-855c-666e63bc62d9.jsonl
12
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_1caed86f-5625-4941-bdc1-cc57e4fec1cd.jsonl
13
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_1d3a0cd6-f0e6-4106-a080-524a4bd50016.jsonl
14
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_29d54f5a-1dd0-4e9a-b783-fb2eec9db072.jsonl
15
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_29fd3d99-53fb-43e2-a4a5-2fd01bf77258.jsonl
16
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_2b224cd9-286e-46ac-8c4e-c1e3befc8760.jsonl
17
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_2c131fca-2a05-4d5f-a805-59d2af3477e2.jsonl
18
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_2f28f1a7-6972-48ad-8997-65a5d52e4f1c.jsonl
19
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_30440198-cd90-48c6-82c1-ea871b8c21c5.jsonl
20
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_39367d6c-d7d4-45fc-a929-8a17184d1744.jsonl
21
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_393d19f2-1cd1-421f-be8a-78d955fdf602.jsonl
22
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_3a5d4f93-97ec-483a-88ef-324df9651b3f.jsonl
23
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_3c89ea11-69ff-4049-b775-f0c785997909.jsonl
24
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_3d5a011a-4bbe-4585-a2bd-ff3e943c8671.jsonl
25
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_3f805f4b-6f7f-42a8-a006-47c1e0401bd7.jsonl
26
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_3f9eb7ad-f266-4154-8d4d-54deeffde075.jsonl
27
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_400748d3-0076-4a04-8a1c-6055ba0b5a2d.jsonl
28
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_44e19375-3995-4dff-a3b6-8a25247a165c.jsonl
29
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_4a8cf52f-81d0-4875-9528-466b1cbc71e1.jsonl
30
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_4cc7015c-c39a-4bf6-9686-c00b3343edd9.jsonl
31
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_50757a42-079b-41ec-bcca-73759faffd62.jsonl
32
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_575ae832-e770-4a89-bfa7-c56f16dbca69.jsonl
33
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_580be642-bb73-4d0d-8b5e-f494722934cd.jsonl
34
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_5a02d9ee-12a0-437d-808f-d26f0eb2012b.jsonl
35
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_5d8d402b-8277-480a-b5fa-71169726864f.jsonl
36
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_5ee33ef7-455e-4fd5-9512-c4771dd802c1.jsonl
37
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_610c82ed-b9ee-449c-83b0-601205f3a74a.jsonl
38
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_629fe3ca-075f-4663-9b81-b807f3b42bf2.jsonl
39
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_64e5075e-e87e-4b2a-9e38-e5c102f6f2b1.jsonl
40
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_65dd2ff6-dae3-4a60-90d3-c3d7349fc92f.jsonl
41
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_6719ecd2-fe34-4078-a584-320d921cbf6f.jsonl
42
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_6938ee72-43ee-4ade-8840-151a402383b0.jsonl
43
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_73241940-66c1-481c-b53a-f5e8b9afe9fa.jsonl
44
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_751370b5-c7cb-44d8-a039-1468ee6747ab.jsonl
45
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_75af5d17-5ebb-4460-9f2a-dc9fe880a936.jsonl
46
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_79d50803-f7d9-4aa8-bf1a-d807980a40c6.jsonl
47
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_7b26046f-7c8d-405b-911b-df51e1a069fa.jsonl
48
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_7d1d69dc-bc8e-4817-9cab-afdc002ab7c4.jsonl
49
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_7ea7a996-b1bb-4773-a36a-461dce2de861.jsonl
50
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_8232f276-9e3f-463a-9350-362de1b501d1.jsonl
51
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_8509f5a7-64a8-4813-92dc-f6eb53e3aacc.jsonl
52
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_85b4c166-469d-449c-ab3d-5214c1d80246.jsonl
53
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_872b620a-b4fd-45d3-92bc-ff0584447705.jsonl
54
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_88f24f8d-16d3-4a21-894d-192033d0fa67.jsonl
55
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_8e6bd730-0f10-49d9-9b02-5ce16da47483.jsonl
56
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_8ede1b71-6846-439a-acba-86a57cfec3d2.jsonl
57
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_8f74f6ba-1c53-42d5-a3c7-e4ef46a71133.jsonl
58
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_90fa9c2b-25b0-47b7-af2b-a683356e543b.jsonl
59
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_92ec488a-287d-4bf0-977b-6998cf0cf476.jsonl
60
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_94a393a1-3b23-4961-a0a6-70bad5b4979c.jsonl
61
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_94b9df70-a95f-4545-be3a-5a34f7b09fb3.jsonl
62
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_95ffc9e1-c505-4a3b-8fb0-cbc98b8703e1.jsonl
63
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_98e718fd-5b0e-439f-a00c-57b61e06b395.jsonl
64
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_9f50a028-2586-4e0d-bcfd-d9d2d74e8953.jsonl
65
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_9f8d7d10-dda7-4e44-b00c-811635a199c8.jsonl
66
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_a055bd62-1ec2-47cf-bad2-321e3d4f053f.jsonl
67
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_a1e3430e-ef5c-4a86-914d-88e8fb7818c0.jsonl
68
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_a2b4cb3d-bea3-478e-82a2-77c00a827250.jsonl
69
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_a647274d-799d-4e7a-a485-b8632a87061e.jsonl
70
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_a94ea420-99ae-4d58-9cdc-d4666e3322a7.jsonl
71
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_ab7c0034-7fc1-4fa8-bae3-e97b85fc16a4.jsonl
72
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_b0732cff-657e-4e69-87b8-66e8025bf441.jsonl
73
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_b1f3b912-a2ab-43bd-8811-43d84b422506.jsonl
74
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_b6c2e4d3-d215-4d99-891f-d20b997d4d5a.jsonl
75
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_bbfabe6b-b9bc-476b-b8f0-7d6c47e9d2be.jsonl
76
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_bf11ef29-a3f9-4a2d-9dbf-ebcc56d39fdb.jsonl
77
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_c05da42b-4939-4f55-867c-16cf6d228e60.jsonl
78
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_c1fc3dd5-861f-4b8d-b7a2-eb8f6887b33b.jsonl
79
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_c44164b4-0770-48d0-87db-590ca529032a.jsonl
80
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_c6b43cda-ca5c-4855-9c08-0f8264cab1af.jsonl
81
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_c6e57a16-4879-4dcf-b591-503cfb46a360.jsonl
82
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_ca6e3842-6ca4-4230-84fa-376a3374c380.jsonl
83
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_caf769e4-7308-4419-9114-900ca213682a.jsonl
84
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_d0da78e9-3dcf-4a46-85c1-f23ed00178bc.jsonl
85
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_d386838c-a51e-4839-9f27-8495b2466e49.jsonl
86
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_d41edf9f-0ebb-4866-b3fe-50785746b36b.jsonl
87
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_d6a7fc44-b584-4dd8-9de2-e981afe0bb4a.jsonl
88
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_d7c49dbb-c008-47fc-9cbe-8d5695842d21.jsonl
89
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_db3b4be7-4e98-4fe9-96bf-05a5788815e3.jsonl
90
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_db981f69-9eca-4031-8565-318b949efbfe.jsonl
91
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_dbd4105f-7cbb-4483-a7b2-96b17b7fb594.jsonl
92
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_de42e348-b333-4d35-b883-9bfc94f29822.jsonl
93
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_de744938-fa6c-45dd-b600-428dd7c63a73.jsonl
94
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_e8f25867-697d-4f52-84e1-e50a95bc182b.jsonl
95
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_eb4e26d4-6625-4f8a-b5fe-6f3a9b8a4b79.jsonl
96
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_f141b736-5ce4-4f18-bb29-704227ca4bd1.jsonl
97
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_f50efdc6-f88e-4fa6-9ef6-dd1d8314bb36.jsonl
98
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_f7680c03-70df-4781-a98d-c88695f92f04.jsonl
99
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_fbc62949-624d-4943-9731-f5c46242ba55.jsonl
100
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/arxiv/arxiv_fd572627-cce7-4667-a684-fef096dfbeb7.jsonl
urls/book.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/book/book.jsonl
urls/c4.txt ADDED
@@ -0,0 +1,1024 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00000-of-01024.jsonl
2
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00001-of-01024.jsonl
3
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00002-of-01024.jsonl
4
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00003-of-01024.jsonl
5
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00004-of-01024.jsonl
6
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00005-of-01024.jsonl
7
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00006-of-01024.jsonl
8
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00007-of-01024.jsonl
9
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00008-of-01024.jsonl
10
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00009-of-01024.jsonl
11
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00010-of-01024.jsonl
12
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00011-of-01024.jsonl
13
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00012-of-01024.jsonl
14
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00013-of-01024.jsonl
15
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00014-of-01024.jsonl
16
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00015-of-01024.jsonl
17
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00016-of-01024.jsonl
18
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00017-of-01024.jsonl
19
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00018-of-01024.jsonl
20
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00019-of-01024.jsonl
21
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00020-of-01024.jsonl
22
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00021-of-01024.jsonl
23
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00022-of-01024.jsonl
24
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00023-of-01024.jsonl
25
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00024-of-01024.jsonl
26
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00025-of-01024.jsonl
27
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00026-of-01024.jsonl
28
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00027-of-01024.jsonl
29
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00028-of-01024.jsonl
30
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00029-of-01024.jsonl
31
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00030-of-01024.jsonl
32
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00031-of-01024.jsonl
33
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00032-of-01024.jsonl
34
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00033-of-01024.jsonl
35
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00034-of-01024.jsonl
36
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00035-of-01024.jsonl
37
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00036-of-01024.jsonl
38
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00037-of-01024.jsonl
39
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00038-of-01024.jsonl
40
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00039-of-01024.jsonl
41
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00040-of-01024.jsonl
42
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00041-of-01024.jsonl
43
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00042-of-01024.jsonl
44
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00043-of-01024.jsonl
45
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00044-of-01024.jsonl
46
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00045-of-01024.jsonl
47
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00046-of-01024.jsonl
48
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00047-of-01024.jsonl
49
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00048-of-01024.jsonl
50
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00049-of-01024.jsonl
51
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00050-of-01024.jsonl
52
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00051-of-01024.jsonl
53
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00052-of-01024.jsonl
54
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00053-of-01024.jsonl
55
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00054-of-01024.jsonl
56
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00055-of-01024.jsonl
57
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00056-of-01024.jsonl
58
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00057-of-01024.jsonl
59
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00058-of-01024.jsonl
60
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00059-of-01024.jsonl
61
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00060-of-01024.jsonl
62
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00061-of-01024.jsonl
63
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00062-of-01024.jsonl
64
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00063-of-01024.jsonl
65
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00064-of-01024.jsonl
66
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00065-of-01024.jsonl
67
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00066-of-01024.jsonl
68
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00067-of-01024.jsonl
69
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00068-of-01024.jsonl
70
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00069-of-01024.jsonl
71
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00070-of-01024.jsonl
72
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00071-of-01024.jsonl
73
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00072-of-01024.jsonl
74
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00073-of-01024.jsonl
75
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00074-of-01024.jsonl
76
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00075-of-01024.jsonl
77
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00076-of-01024.jsonl
78
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00077-of-01024.jsonl
79
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00078-of-01024.jsonl
80
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00079-of-01024.jsonl
81
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00080-of-01024.jsonl
82
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00081-of-01024.jsonl
83
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00082-of-01024.jsonl
84
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00083-of-01024.jsonl
85
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00084-of-01024.jsonl
86
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00085-of-01024.jsonl
87
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00086-of-01024.jsonl
88
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00087-of-01024.jsonl
89
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00088-of-01024.jsonl
90
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00089-of-01024.jsonl
91
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00090-of-01024.jsonl
92
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00091-of-01024.jsonl
93
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00092-of-01024.jsonl
94
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00093-of-01024.jsonl
95
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00094-of-01024.jsonl
96
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00095-of-01024.jsonl
97
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00096-of-01024.jsonl
98
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00097-of-01024.jsonl
99
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00098-of-01024.jsonl
100
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00099-of-01024.jsonl
101
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00100-of-01024.jsonl
102
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00101-of-01024.jsonl
103
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00102-of-01024.jsonl
104
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00103-of-01024.jsonl
105
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00104-of-01024.jsonl
106
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00105-of-01024.jsonl
107
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00106-of-01024.jsonl
108
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00107-of-01024.jsonl
109
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00108-of-01024.jsonl
110
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00109-of-01024.jsonl
111
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00110-of-01024.jsonl
112
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00111-of-01024.jsonl
113
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00112-of-01024.jsonl
114
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00113-of-01024.jsonl
115
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00114-of-01024.jsonl
116
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00115-of-01024.jsonl
117
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00116-of-01024.jsonl
118
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00117-of-01024.jsonl
119
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00118-of-01024.jsonl
120
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00119-of-01024.jsonl
121
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00120-of-01024.jsonl
122
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00121-of-01024.jsonl
123
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00122-of-01024.jsonl
124
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00123-of-01024.jsonl
125
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00124-of-01024.jsonl
126
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00125-of-01024.jsonl
127
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00126-of-01024.jsonl
128
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00127-of-01024.jsonl
129
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00128-of-01024.jsonl
130
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00129-of-01024.jsonl
131
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00130-of-01024.jsonl
132
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00131-of-01024.jsonl
133
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00132-of-01024.jsonl
134
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00133-of-01024.jsonl
135
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00134-of-01024.jsonl
136
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00135-of-01024.jsonl
137
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00136-of-01024.jsonl
138
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00137-of-01024.jsonl
139
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00138-of-01024.jsonl
140
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00139-of-01024.jsonl
141
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00140-of-01024.jsonl
142
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00141-of-01024.jsonl
143
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00142-of-01024.jsonl
144
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00143-of-01024.jsonl
145
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00144-of-01024.jsonl
146
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00145-of-01024.jsonl
147
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00146-of-01024.jsonl
148
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00147-of-01024.jsonl
149
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00148-of-01024.jsonl
150
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00149-of-01024.jsonl
151
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00150-of-01024.jsonl
152
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00151-of-01024.jsonl
153
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00152-of-01024.jsonl
154
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00153-of-01024.jsonl
155
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00154-of-01024.jsonl
156
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00155-of-01024.jsonl
157
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00156-of-01024.jsonl
158
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00157-of-01024.jsonl
159
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00158-of-01024.jsonl
160
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00159-of-01024.jsonl
161
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00160-of-01024.jsonl
162
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00161-of-01024.jsonl
163
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00162-of-01024.jsonl
164
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00163-of-01024.jsonl
165
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00164-of-01024.jsonl
166
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00165-of-01024.jsonl
167
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00166-of-01024.jsonl
168
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00167-of-01024.jsonl
169
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00168-of-01024.jsonl
170
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00169-of-01024.jsonl
171
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00170-of-01024.jsonl
172
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00171-of-01024.jsonl
173
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00172-of-01024.jsonl
174
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00173-of-01024.jsonl
175
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00174-of-01024.jsonl
176
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00175-of-01024.jsonl
177
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00176-of-01024.jsonl
178
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00177-of-01024.jsonl
179
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00178-of-01024.jsonl
180
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00179-of-01024.jsonl
181
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00180-of-01024.jsonl
182
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00181-of-01024.jsonl
183
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00182-of-01024.jsonl
184
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00183-of-01024.jsonl
185
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00184-of-01024.jsonl
186
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00185-of-01024.jsonl
187
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00186-of-01024.jsonl
188
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00187-of-01024.jsonl
189
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00188-of-01024.jsonl
190
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00189-of-01024.jsonl
191
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00190-of-01024.jsonl
192
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00191-of-01024.jsonl
193
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00192-of-01024.jsonl
194
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00193-of-01024.jsonl
195
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00194-of-01024.jsonl
196
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00195-of-01024.jsonl
197
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00196-of-01024.jsonl
198
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00197-of-01024.jsonl
199
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00198-of-01024.jsonl
200
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00199-of-01024.jsonl
201
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00200-of-01024.jsonl
202
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00201-of-01024.jsonl
203
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00202-of-01024.jsonl
204
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00203-of-01024.jsonl
205
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00204-of-01024.jsonl
206
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00205-of-01024.jsonl
207
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00206-of-01024.jsonl
208
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00207-of-01024.jsonl
209
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00208-of-01024.jsonl
210
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00209-of-01024.jsonl
211
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00210-of-01024.jsonl
212
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00211-of-01024.jsonl
213
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00212-of-01024.jsonl
214
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00213-of-01024.jsonl
215
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00214-of-01024.jsonl
216
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00215-of-01024.jsonl
217
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00216-of-01024.jsonl
218
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00217-of-01024.jsonl
219
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00218-of-01024.jsonl
220
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00219-of-01024.jsonl
221
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00220-of-01024.jsonl
222
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00221-of-01024.jsonl
223
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00222-of-01024.jsonl
224
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00223-of-01024.jsonl
225
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00224-of-01024.jsonl
226
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00225-of-01024.jsonl
227
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00226-of-01024.jsonl
228
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00227-of-01024.jsonl
229
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00228-of-01024.jsonl
230
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00229-of-01024.jsonl
231
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00230-of-01024.jsonl
232
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00231-of-01024.jsonl
233
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00232-of-01024.jsonl
234
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00233-of-01024.jsonl
235
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00234-of-01024.jsonl
236
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00235-of-01024.jsonl
237
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00236-of-01024.jsonl
238
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00237-of-01024.jsonl
239
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00238-of-01024.jsonl
240
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00239-of-01024.jsonl
241
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00240-of-01024.jsonl
242
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00241-of-01024.jsonl
243
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00242-of-01024.jsonl
244
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00243-of-01024.jsonl
245
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00244-of-01024.jsonl
246
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00245-of-01024.jsonl
247
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00246-of-01024.jsonl
248
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00247-of-01024.jsonl
249
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00248-of-01024.jsonl
250
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00249-of-01024.jsonl
251
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00250-of-01024.jsonl
252
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00251-of-01024.jsonl
253
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00252-of-01024.jsonl
254
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00253-of-01024.jsonl
255
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00254-of-01024.jsonl
256
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00255-of-01024.jsonl
257
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00256-of-01024.jsonl
258
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00257-of-01024.jsonl
259
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00258-of-01024.jsonl
260
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00259-of-01024.jsonl
261
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00260-of-01024.jsonl
262
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00261-of-01024.jsonl
263
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00262-of-01024.jsonl
264
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00263-of-01024.jsonl
265
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00264-of-01024.jsonl
266
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00265-of-01024.jsonl
267
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00266-of-01024.jsonl
268
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00267-of-01024.jsonl
269
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00268-of-01024.jsonl
270
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00269-of-01024.jsonl
271
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00270-of-01024.jsonl
272
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00271-of-01024.jsonl
273
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00272-of-01024.jsonl
274
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00273-of-01024.jsonl
275
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00274-of-01024.jsonl
276
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00275-of-01024.jsonl
277
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00276-of-01024.jsonl
278
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00277-of-01024.jsonl
279
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00278-of-01024.jsonl
280
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00279-of-01024.jsonl
281
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00280-of-01024.jsonl
282
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00281-of-01024.jsonl
283
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00282-of-01024.jsonl
284
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00283-of-01024.jsonl
285
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00284-of-01024.jsonl
286
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00285-of-01024.jsonl
287
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00286-of-01024.jsonl
288
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00287-of-01024.jsonl
289
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00288-of-01024.jsonl
290
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00289-of-01024.jsonl
291
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00290-of-01024.jsonl
292
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00291-of-01024.jsonl
293
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00292-of-01024.jsonl
294
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00293-of-01024.jsonl
295
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00294-of-01024.jsonl
296
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00295-of-01024.jsonl
297
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00296-of-01024.jsonl
298
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00297-of-01024.jsonl
299
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00298-of-01024.jsonl
300
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00299-of-01024.jsonl
301
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00300-of-01024.jsonl
302
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00301-of-01024.jsonl
303
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00302-of-01024.jsonl
304
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00303-of-01024.jsonl
305
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00304-of-01024.jsonl
306
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00305-of-01024.jsonl
307
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00306-of-01024.jsonl
308
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00307-of-01024.jsonl
309
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00308-of-01024.jsonl
310
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00309-of-01024.jsonl
311
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00310-of-01024.jsonl
312
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00311-of-01024.jsonl
313
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00312-of-01024.jsonl
314
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00313-of-01024.jsonl
315
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00314-of-01024.jsonl
316
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00315-of-01024.jsonl
317
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00316-of-01024.jsonl
318
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00317-of-01024.jsonl
319
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00318-of-01024.jsonl
320
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00319-of-01024.jsonl
321
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00320-of-01024.jsonl
322
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00321-of-01024.jsonl
323
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00322-of-01024.jsonl
324
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00323-of-01024.jsonl
325
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00324-of-01024.jsonl
326
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00325-of-01024.jsonl
327
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00326-of-01024.jsonl
328
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00327-of-01024.jsonl
329
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00328-of-01024.jsonl
330
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00329-of-01024.jsonl
331
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00330-of-01024.jsonl
332
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00331-of-01024.jsonl
333
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00332-of-01024.jsonl
334
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00333-of-01024.jsonl
335
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00334-of-01024.jsonl
336
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00335-of-01024.jsonl
337
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00336-of-01024.jsonl
338
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00337-of-01024.jsonl
339
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00338-of-01024.jsonl
340
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00339-of-01024.jsonl
341
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00340-of-01024.jsonl
342
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00341-of-01024.jsonl
343
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00342-of-01024.jsonl
344
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00343-of-01024.jsonl
345
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00344-of-01024.jsonl
346
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00345-of-01024.jsonl
347
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00346-of-01024.jsonl
348
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00347-of-01024.jsonl
349
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00348-of-01024.jsonl
350
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00349-of-01024.jsonl
351
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00350-of-01024.jsonl
352
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00351-of-01024.jsonl
353
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00352-of-01024.jsonl
354
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00353-of-01024.jsonl
355
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00354-of-01024.jsonl
356
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00355-of-01024.jsonl
357
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00356-of-01024.jsonl
358
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00357-of-01024.jsonl
359
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00358-of-01024.jsonl
360
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00359-of-01024.jsonl
361
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00360-of-01024.jsonl
362
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00361-of-01024.jsonl
363
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00362-of-01024.jsonl
364
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00363-of-01024.jsonl
365
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00364-of-01024.jsonl
366
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00365-of-01024.jsonl
367
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00366-of-01024.jsonl
368
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00367-of-01024.jsonl
369
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00368-of-01024.jsonl
370
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00369-of-01024.jsonl
371
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00370-of-01024.jsonl
372
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00371-of-01024.jsonl
373
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00372-of-01024.jsonl
374
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00373-of-01024.jsonl
375
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00374-of-01024.jsonl
376
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00375-of-01024.jsonl
377
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00376-of-01024.jsonl
378
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00377-of-01024.jsonl
379
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00378-of-01024.jsonl
380
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00379-of-01024.jsonl
381
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00380-of-01024.jsonl
382
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00381-of-01024.jsonl
383
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00382-of-01024.jsonl
384
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00383-of-01024.jsonl
385
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00384-of-01024.jsonl
386
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00385-of-01024.jsonl
387
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00386-of-01024.jsonl
388
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00387-of-01024.jsonl
389
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00388-of-01024.jsonl
390
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00389-of-01024.jsonl
391
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00390-of-01024.jsonl
392
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00391-of-01024.jsonl
393
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00392-of-01024.jsonl
394
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00393-of-01024.jsonl
395
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00394-of-01024.jsonl
396
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00395-of-01024.jsonl
397
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00396-of-01024.jsonl
398
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00397-of-01024.jsonl
399
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00398-of-01024.jsonl
400
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00399-of-01024.jsonl
401
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00400-of-01024.jsonl
402
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00401-of-01024.jsonl
403
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00402-of-01024.jsonl
404
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00403-of-01024.jsonl
405
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00404-of-01024.jsonl
406
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00405-of-01024.jsonl
407
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00406-of-01024.jsonl
408
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00407-of-01024.jsonl
409
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00408-of-01024.jsonl
410
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00409-of-01024.jsonl
411
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00410-of-01024.jsonl
412
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00411-of-01024.jsonl
413
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00412-of-01024.jsonl
414
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00413-of-01024.jsonl
415
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00414-of-01024.jsonl
416
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00415-of-01024.jsonl
417
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00416-of-01024.jsonl
418
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00417-of-01024.jsonl
419
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00418-of-01024.jsonl
420
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00419-of-01024.jsonl
421
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00420-of-01024.jsonl
422
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00421-of-01024.jsonl
423
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00422-of-01024.jsonl
424
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00423-of-01024.jsonl
425
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00424-of-01024.jsonl
426
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00425-of-01024.jsonl
427
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00426-of-01024.jsonl
428
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00427-of-01024.jsonl
429
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00428-of-01024.jsonl
430
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00429-of-01024.jsonl
431
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00430-of-01024.jsonl
432
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00431-of-01024.jsonl
433
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00432-of-01024.jsonl
434
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00433-of-01024.jsonl
435
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00434-of-01024.jsonl
436
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00435-of-01024.jsonl
437
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00436-of-01024.jsonl
438
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00437-of-01024.jsonl
439
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00438-of-01024.jsonl
440
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00439-of-01024.jsonl
441
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00440-of-01024.jsonl
442
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00441-of-01024.jsonl
443
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00442-of-01024.jsonl
444
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00443-of-01024.jsonl
445
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00444-of-01024.jsonl
446
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00445-of-01024.jsonl
447
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00446-of-01024.jsonl
448
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00447-of-01024.jsonl
449
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00448-of-01024.jsonl
450
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00449-of-01024.jsonl
451
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00450-of-01024.jsonl
452
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00451-of-01024.jsonl
453
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00452-of-01024.jsonl
454
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00453-of-01024.jsonl
455
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00454-of-01024.jsonl
456
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00455-of-01024.jsonl
457
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00456-of-01024.jsonl
458
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00457-of-01024.jsonl
459
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00458-of-01024.jsonl
460
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00459-of-01024.jsonl
461
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00460-of-01024.jsonl
462
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00461-of-01024.jsonl
463
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00462-of-01024.jsonl
464
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00463-of-01024.jsonl
465
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00464-of-01024.jsonl
466
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00465-of-01024.jsonl
467
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00466-of-01024.jsonl
468
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00467-of-01024.jsonl
469
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00468-of-01024.jsonl
470
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00469-of-01024.jsonl
471
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00470-of-01024.jsonl
472
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00471-of-01024.jsonl
473
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00472-of-01024.jsonl
474
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00473-of-01024.jsonl
475
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00474-of-01024.jsonl
476
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00475-of-01024.jsonl
477
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00476-of-01024.jsonl
478
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00477-of-01024.jsonl
479
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00478-of-01024.jsonl
480
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00479-of-01024.jsonl
481
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00480-of-01024.jsonl
482
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00481-of-01024.jsonl
483
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00482-of-01024.jsonl
484
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00483-of-01024.jsonl
485
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00484-of-01024.jsonl
486
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00485-of-01024.jsonl
487
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00486-of-01024.jsonl
488
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00487-of-01024.jsonl
489
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00488-of-01024.jsonl
490
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00489-of-01024.jsonl
491
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00490-of-01024.jsonl
492
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00491-of-01024.jsonl
493
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00492-of-01024.jsonl
494
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00493-of-01024.jsonl
495
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00494-of-01024.jsonl
496
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00495-of-01024.jsonl
497
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00496-of-01024.jsonl
498
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00497-of-01024.jsonl
499
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00498-of-01024.jsonl
500
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00499-of-01024.jsonl
501
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00500-of-01024.jsonl
502
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00501-of-01024.jsonl
503
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00502-of-01024.jsonl
504
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00503-of-01024.jsonl
505
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00504-of-01024.jsonl
506
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00505-of-01024.jsonl
507
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00506-of-01024.jsonl
508
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00507-of-01024.jsonl
509
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00508-of-01024.jsonl
510
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00509-of-01024.jsonl
511
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00510-of-01024.jsonl
512
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00511-of-01024.jsonl
513
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00512-of-01024.jsonl
514
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00513-of-01024.jsonl
515
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00514-of-01024.jsonl
516
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00515-of-01024.jsonl
517
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00516-of-01024.jsonl
518
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00517-of-01024.jsonl
519
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00518-of-01024.jsonl
520
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00519-of-01024.jsonl
521
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00520-of-01024.jsonl
522
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00521-of-01024.jsonl
523
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00522-of-01024.jsonl
524
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00523-of-01024.jsonl
525
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00524-of-01024.jsonl
526
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00525-of-01024.jsonl
527
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00526-of-01024.jsonl
528
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00527-of-01024.jsonl
529
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00528-of-01024.jsonl
530
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00529-of-01024.jsonl
531
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00530-of-01024.jsonl
532
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00531-of-01024.jsonl
533
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00532-of-01024.jsonl
534
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00533-of-01024.jsonl
535
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00534-of-01024.jsonl
536
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00535-of-01024.jsonl
537
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00536-of-01024.jsonl
538
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00537-of-01024.jsonl
539
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00538-of-01024.jsonl
540
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00539-of-01024.jsonl
541
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00540-of-01024.jsonl
542
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00541-of-01024.jsonl
543
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00542-of-01024.jsonl
544
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00543-of-01024.jsonl
545
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00544-of-01024.jsonl
546
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00545-of-01024.jsonl
547
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00546-of-01024.jsonl
548
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00547-of-01024.jsonl
549
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00548-of-01024.jsonl
550
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00549-of-01024.jsonl
551
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00550-of-01024.jsonl
552
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00551-of-01024.jsonl
553
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00552-of-01024.jsonl
554
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00553-of-01024.jsonl
555
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00554-of-01024.jsonl
556
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00555-of-01024.jsonl
557
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00556-of-01024.jsonl
558
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00557-of-01024.jsonl
559
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00558-of-01024.jsonl
560
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00559-of-01024.jsonl
561
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00560-of-01024.jsonl
562
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00561-of-01024.jsonl
563
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00562-of-01024.jsonl
564
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00563-of-01024.jsonl
565
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00564-of-01024.jsonl
566
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00565-of-01024.jsonl
567
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00566-of-01024.jsonl
568
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00567-of-01024.jsonl
569
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00568-of-01024.jsonl
570
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00569-of-01024.jsonl
571
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00570-of-01024.jsonl
572
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00571-of-01024.jsonl
573
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00572-of-01024.jsonl
574
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00573-of-01024.jsonl
575
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00574-of-01024.jsonl
576
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00575-of-01024.jsonl
577
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00576-of-01024.jsonl
578
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00577-of-01024.jsonl
579
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00578-of-01024.jsonl
580
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00579-of-01024.jsonl
581
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00580-of-01024.jsonl
582
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00581-of-01024.jsonl
583
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00582-of-01024.jsonl
584
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00583-of-01024.jsonl
585
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00584-of-01024.jsonl
586
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00585-of-01024.jsonl
587
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00586-of-01024.jsonl
588
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00587-of-01024.jsonl
589
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00588-of-01024.jsonl
590
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00589-of-01024.jsonl
591
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00590-of-01024.jsonl
592
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00591-of-01024.jsonl
593
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00592-of-01024.jsonl
594
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00593-of-01024.jsonl
595
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00594-of-01024.jsonl
596
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00595-of-01024.jsonl
597
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00596-of-01024.jsonl
598
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00597-of-01024.jsonl
599
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00598-of-01024.jsonl
600
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00599-of-01024.jsonl
601
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00600-of-01024.jsonl
602
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00601-of-01024.jsonl
603
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00602-of-01024.jsonl
604
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00603-of-01024.jsonl
605
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00604-of-01024.jsonl
606
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00605-of-01024.jsonl
607
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00606-of-01024.jsonl
608
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00607-of-01024.jsonl
609
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00608-of-01024.jsonl
610
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00609-of-01024.jsonl
611
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00610-of-01024.jsonl
612
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00611-of-01024.jsonl
613
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00612-of-01024.jsonl
614
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00613-of-01024.jsonl
615
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00614-of-01024.jsonl
616
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00615-of-01024.jsonl
617
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00616-of-01024.jsonl
618
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00617-of-01024.jsonl
619
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00618-of-01024.jsonl
620
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00619-of-01024.jsonl
621
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00620-of-01024.jsonl
622
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00621-of-01024.jsonl
623
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00622-of-01024.jsonl
624
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00623-of-01024.jsonl
625
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00624-of-01024.jsonl
626
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00625-of-01024.jsonl
627
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00626-of-01024.jsonl
628
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00627-of-01024.jsonl
629
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00628-of-01024.jsonl
630
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00629-of-01024.jsonl
631
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00630-of-01024.jsonl
632
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00631-of-01024.jsonl
633
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00632-of-01024.jsonl
634
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00633-of-01024.jsonl
635
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00634-of-01024.jsonl
636
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00635-of-01024.jsonl
637
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00636-of-01024.jsonl
638
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00637-of-01024.jsonl
639
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00638-of-01024.jsonl
640
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00639-of-01024.jsonl
641
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00640-of-01024.jsonl
642
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00641-of-01024.jsonl
643
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00642-of-01024.jsonl
644
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00643-of-01024.jsonl
645
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00644-of-01024.jsonl
646
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00645-of-01024.jsonl
647
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00646-of-01024.jsonl
648
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00647-of-01024.jsonl
649
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00648-of-01024.jsonl
650
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00649-of-01024.jsonl
651
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00650-of-01024.jsonl
652
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00651-of-01024.jsonl
653
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00652-of-01024.jsonl
654
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00653-of-01024.jsonl
655
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00654-of-01024.jsonl
656
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00655-of-01024.jsonl
657
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00656-of-01024.jsonl
658
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00657-of-01024.jsonl
659
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00658-of-01024.jsonl
660
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00659-of-01024.jsonl
661
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00660-of-01024.jsonl
662
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00661-of-01024.jsonl
663
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00662-of-01024.jsonl
664
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00663-of-01024.jsonl
665
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00664-of-01024.jsonl
666
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00665-of-01024.jsonl
667
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00666-of-01024.jsonl
668
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00667-of-01024.jsonl
669
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00668-of-01024.jsonl
670
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00669-of-01024.jsonl
671
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00670-of-01024.jsonl
672
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00671-of-01024.jsonl
673
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00672-of-01024.jsonl
674
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00673-of-01024.jsonl
675
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00674-of-01024.jsonl
676
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00675-of-01024.jsonl
677
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00676-of-01024.jsonl
678
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00677-of-01024.jsonl
679
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00678-of-01024.jsonl
680
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00679-of-01024.jsonl
681
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00680-of-01024.jsonl
682
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00681-of-01024.jsonl
683
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00682-of-01024.jsonl
684
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00683-of-01024.jsonl
685
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00684-of-01024.jsonl
686
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00685-of-01024.jsonl
687
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00686-of-01024.jsonl
688
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00687-of-01024.jsonl
689
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00688-of-01024.jsonl
690
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00689-of-01024.jsonl
691
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00690-of-01024.jsonl
692
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00691-of-01024.jsonl
693
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00692-of-01024.jsonl
694
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00693-of-01024.jsonl
695
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00694-of-01024.jsonl
696
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00695-of-01024.jsonl
697
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00696-of-01024.jsonl
698
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00697-of-01024.jsonl
699
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00698-of-01024.jsonl
700
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00699-of-01024.jsonl
701
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00700-of-01024.jsonl
702
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00701-of-01024.jsonl
703
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00702-of-01024.jsonl
704
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00703-of-01024.jsonl
705
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00704-of-01024.jsonl
706
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00705-of-01024.jsonl
707
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00706-of-01024.jsonl
708
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00707-of-01024.jsonl
709
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00708-of-01024.jsonl
710
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00709-of-01024.jsonl
711
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00710-of-01024.jsonl
712
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00711-of-01024.jsonl
713
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00712-of-01024.jsonl
714
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00713-of-01024.jsonl
715
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00714-of-01024.jsonl
716
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00715-of-01024.jsonl
717
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00716-of-01024.jsonl
718
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00717-of-01024.jsonl
719
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00718-of-01024.jsonl
720
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00719-of-01024.jsonl
721
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00720-of-01024.jsonl
722
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00721-of-01024.jsonl
723
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00722-of-01024.jsonl
724
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00723-of-01024.jsonl
725
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00724-of-01024.jsonl
726
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00725-of-01024.jsonl
727
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00726-of-01024.jsonl
728
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00727-of-01024.jsonl
729
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00728-of-01024.jsonl
730
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00729-of-01024.jsonl
731
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00730-of-01024.jsonl
732
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00731-of-01024.jsonl
733
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00732-of-01024.jsonl
734
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00733-of-01024.jsonl
735
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00734-of-01024.jsonl
736
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00735-of-01024.jsonl
737
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00736-of-01024.jsonl
738
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00737-of-01024.jsonl
739
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00738-of-01024.jsonl
740
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00739-of-01024.jsonl
741
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00740-of-01024.jsonl
742
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00741-of-01024.jsonl
743
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00742-of-01024.jsonl
744
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00743-of-01024.jsonl
745
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00744-of-01024.jsonl
746
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00745-of-01024.jsonl
747
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00746-of-01024.jsonl
748
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00747-of-01024.jsonl
749
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00748-of-01024.jsonl
750
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00749-of-01024.jsonl
751
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00750-of-01024.jsonl
752
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00751-of-01024.jsonl
753
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00752-of-01024.jsonl
754
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00753-of-01024.jsonl
755
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00754-of-01024.jsonl
756
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00755-of-01024.jsonl
757
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00756-of-01024.jsonl
758
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00757-of-01024.jsonl
759
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00758-of-01024.jsonl
760
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00759-of-01024.jsonl
761
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00760-of-01024.jsonl
762
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00761-of-01024.jsonl
763
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00762-of-01024.jsonl
764
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00763-of-01024.jsonl
765
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00764-of-01024.jsonl
766
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00765-of-01024.jsonl
767
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00766-of-01024.jsonl
768
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00767-of-01024.jsonl
769
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00768-of-01024.jsonl
770
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00769-of-01024.jsonl
771
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00770-of-01024.jsonl
772
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00771-of-01024.jsonl
773
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00772-of-01024.jsonl
774
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00773-of-01024.jsonl
775
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00774-of-01024.jsonl
776
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00775-of-01024.jsonl
777
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00776-of-01024.jsonl
778
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00777-of-01024.jsonl
779
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00778-of-01024.jsonl
780
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00779-of-01024.jsonl
781
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00780-of-01024.jsonl
782
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00781-of-01024.jsonl
783
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00782-of-01024.jsonl
784
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00783-of-01024.jsonl
785
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00784-of-01024.jsonl
786
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00785-of-01024.jsonl
787
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00786-of-01024.jsonl
788
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00787-of-01024.jsonl
789
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00788-of-01024.jsonl
790
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00789-of-01024.jsonl
791
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00790-of-01024.jsonl
792
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00791-of-01024.jsonl
793
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00792-of-01024.jsonl
794
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00793-of-01024.jsonl
795
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00794-of-01024.jsonl
796
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00795-of-01024.jsonl
797
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00796-of-01024.jsonl
798
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00797-of-01024.jsonl
799
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00798-of-01024.jsonl
800
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00799-of-01024.jsonl
801
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00800-of-01024.jsonl
802
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00801-of-01024.jsonl
803
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00802-of-01024.jsonl
804
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00803-of-01024.jsonl
805
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00804-of-01024.jsonl
806
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00805-of-01024.jsonl
807
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00806-of-01024.jsonl
808
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00807-of-01024.jsonl
809
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00808-of-01024.jsonl
810
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00809-of-01024.jsonl
811
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00810-of-01024.jsonl
812
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00811-of-01024.jsonl
813
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00812-of-01024.jsonl
814
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00813-of-01024.jsonl
815
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00814-of-01024.jsonl
816
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00815-of-01024.jsonl
817
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00816-of-01024.jsonl
818
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00817-of-01024.jsonl
819
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00818-of-01024.jsonl
820
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00819-of-01024.jsonl
821
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00820-of-01024.jsonl
822
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00821-of-01024.jsonl
823
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00822-of-01024.jsonl
824
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00823-of-01024.jsonl
825
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00824-of-01024.jsonl
826
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00825-of-01024.jsonl
827
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00826-of-01024.jsonl
828
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00827-of-01024.jsonl
829
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00828-of-01024.jsonl
830
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00829-of-01024.jsonl
831
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00830-of-01024.jsonl
832
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00831-of-01024.jsonl
833
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00832-of-01024.jsonl
834
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00833-of-01024.jsonl
835
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00834-of-01024.jsonl
836
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00835-of-01024.jsonl
837
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00836-of-01024.jsonl
838
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00837-of-01024.jsonl
839
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00838-of-01024.jsonl
840
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00839-of-01024.jsonl
841
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00840-of-01024.jsonl
842
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00841-of-01024.jsonl
843
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00842-of-01024.jsonl
844
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00843-of-01024.jsonl
845
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00844-of-01024.jsonl
846
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00845-of-01024.jsonl
847
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00846-of-01024.jsonl
848
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00847-of-01024.jsonl
849
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00848-of-01024.jsonl
850
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00849-of-01024.jsonl
851
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00850-of-01024.jsonl
852
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00851-of-01024.jsonl
853
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00852-of-01024.jsonl
854
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00853-of-01024.jsonl
855
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00854-of-01024.jsonl
856
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00855-of-01024.jsonl
857
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00856-of-01024.jsonl
858
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00857-of-01024.jsonl
859
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00858-of-01024.jsonl
860
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00859-of-01024.jsonl
861
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00860-of-01024.jsonl
862
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00861-of-01024.jsonl
863
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00862-of-01024.jsonl
864
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00863-of-01024.jsonl
865
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00864-of-01024.jsonl
866
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00865-of-01024.jsonl
867
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00866-of-01024.jsonl
868
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00867-of-01024.jsonl
869
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00868-of-01024.jsonl
870
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00869-of-01024.jsonl
871
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00870-of-01024.jsonl
872
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00871-of-01024.jsonl
873
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00872-of-01024.jsonl
874
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00873-of-01024.jsonl
875
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00874-of-01024.jsonl
876
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00875-of-01024.jsonl
877
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00876-of-01024.jsonl
878
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00877-of-01024.jsonl
879
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00878-of-01024.jsonl
880
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00879-of-01024.jsonl
881
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00880-of-01024.jsonl
882
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00881-of-01024.jsonl
883
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00882-of-01024.jsonl
884
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00883-of-01024.jsonl
885
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00884-of-01024.jsonl
886
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00885-of-01024.jsonl
887
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00886-of-01024.jsonl
888
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00887-of-01024.jsonl
889
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00888-of-01024.jsonl
890
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00889-of-01024.jsonl
891
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00890-of-01024.jsonl
892
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00891-of-01024.jsonl
893
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00892-of-01024.jsonl
894
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00893-of-01024.jsonl
895
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00894-of-01024.jsonl
896
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00895-of-01024.jsonl
897
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00896-of-01024.jsonl
898
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00897-of-01024.jsonl
899
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00898-of-01024.jsonl
900
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00899-of-01024.jsonl
901
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00900-of-01024.jsonl
902
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00901-of-01024.jsonl
903
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00902-of-01024.jsonl
904
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00903-of-01024.jsonl
905
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00904-of-01024.jsonl
906
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00905-of-01024.jsonl
907
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00906-of-01024.jsonl
908
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00907-of-01024.jsonl
909
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00908-of-01024.jsonl
910
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00909-of-01024.jsonl
911
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00910-of-01024.jsonl
912
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00911-of-01024.jsonl
913
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00912-of-01024.jsonl
914
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00913-of-01024.jsonl
915
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00914-of-01024.jsonl
916
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00915-of-01024.jsonl
917
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00916-of-01024.jsonl
918
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00917-of-01024.jsonl
919
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00918-of-01024.jsonl
920
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00919-of-01024.jsonl
921
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00920-of-01024.jsonl
922
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00921-of-01024.jsonl
923
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00922-of-01024.jsonl
924
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00923-of-01024.jsonl
925
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00924-of-01024.jsonl
926
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00925-of-01024.jsonl
927
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00926-of-01024.jsonl
928
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00927-of-01024.jsonl
929
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00928-of-01024.jsonl
930
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00929-of-01024.jsonl
931
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00930-of-01024.jsonl
932
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00931-of-01024.jsonl
933
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00932-of-01024.jsonl
934
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00933-of-01024.jsonl
935
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00934-of-01024.jsonl
936
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00935-of-01024.jsonl
937
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00936-of-01024.jsonl
938
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00937-of-01024.jsonl
939
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00938-of-01024.jsonl
940
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00939-of-01024.jsonl
941
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00940-of-01024.jsonl
942
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00941-of-01024.jsonl
943
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00942-of-01024.jsonl
944
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00943-of-01024.jsonl
945
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00944-of-01024.jsonl
946
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00945-of-01024.jsonl
947
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00946-of-01024.jsonl
948
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00947-of-01024.jsonl
949
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00948-of-01024.jsonl
950
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00949-of-01024.jsonl
951
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00950-of-01024.jsonl
952
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00951-of-01024.jsonl
953
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00952-of-01024.jsonl
954
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00953-of-01024.jsonl
955
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00954-of-01024.jsonl
956
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00955-of-01024.jsonl
957
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00956-of-01024.jsonl
958
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00957-of-01024.jsonl
959
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00958-of-01024.jsonl
960
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00959-of-01024.jsonl
961
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00960-of-01024.jsonl
962
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00961-of-01024.jsonl
963
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00962-of-01024.jsonl
964
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00963-of-01024.jsonl
965
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00964-of-01024.jsonl
966
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00965-of-01024.jsonl
967
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00966-of-01024.jsonl
968
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00967-of-01024.jsonl
969
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00968-of-01024.jsonl
970
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00969-of-01024.jsonl
971
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00970-of-01024.jsonl
972
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00971-of-01024.jsonl
973
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00972-of-01024.jsonl
974
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00973-of-01024.jsonl
975
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00974-of-01024.jsonl
976
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00975-of-01024.jsonl
977
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00976-of-01024.jsonl
978
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00977-of-01024.jsonl
979
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00978-of-01024.jsonl
980
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00979-of-01024.jsonl
981
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00980-of-01024.jsonl
982
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00981-of-01024.jsonl
983
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00982-of-01024.jsonl
984
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00983-of-01024.jsonl
985
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00984-of-01024.jsonl
986
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00985-of-01024.jsonl
987
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00986-of-01024.jsonl
988
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00987-of-01024.jsonl
989
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00988-of-01024.jsonl
990
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00989-of-01024.jsonl
991
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00990-of-01024.jsonl
992
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00991-of-01024.jsonl
993
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00992-of-01024.jsonl
994
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00993-of-01024.jsonl
995
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00994-of-01024.jsonl
996
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00995-of-01024.jsonl
997
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00996-of-01024.jsonl
998
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00997-of-01024.jsonl
999
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00998-of-01024.jsonl
1000
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.00999-of-01024.jsonl
1001
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01000-of-01024.jsonl
1002
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01001-of-01024.jsonl
1003
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01002-of-01024.jsonl
1004
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01003-of-01024.jsonl
1005
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01004-of-01024.jsonl
1006
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01005-of-01024.jsonl
1007
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01006-of-01024.jsonl
1008
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01007-of-01024.jsonl
1009
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01008-of-01024.jsonl
1010
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01009-of-01024.jsonl
1011
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01010-of-01024.jsonl
1012
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01011-of-01024.jsonl
1013
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01012-of-01024.jsonl
1014
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01013-of-01024.jsonl
1015
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01014-of-01024.jsonl
1016
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01015-of-01024.jsonl
1017
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01016-of-01024.jsonl
1018
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01017-of-01024.jsonl
1019
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01018-of-01024.jsonl
1020
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01019-of-01024.jsonl
1021
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01020-of-01024.jsonl
1022
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01021-of-01024.jsonl
1023
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01022-of-01024.jsonl
1024
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/c4/c4-train.01023-of-01024.jsonl
urls/common_crawl.txt ADDED
The diff for this file is too large to render. See raw diff
 
urls/github.txt ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_08cdfa755e6d4d89b673d5bd1acee5f6.sampled.jsonl
2
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_0f27d10d846a473b96070c3394832f32.sampled.jsonl
3
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_0f979046c8e64e0fb5843d2634a9957d.sampled.jsonl
4
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_10f129bfd0af45caa9cd72aa9d863ec5.sampled.jsonl
5
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_11a1943edfa349c7939382799599eed6.sampled.jsonl
6
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_17197bd2478044bebd9ff4634b6dfcee.sampled.jsonl
7
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_1d750c0ce39d40c6bc20bad9469e5a99.sampled.jsonl
8
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_21078cf63afb4d9eb4a7876f726a7226.sampled.jsonl
9
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_216883d3a669406699428bc485a4c228.sampled.jsonl
10
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_24278a707deb445b8e4f59c83dd67910.sampled.jsonl
11
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_25989b8233a04ac791b0eccd502e0c7a.sampled.jsonl
12
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_26a6fa61c5eb4bb885e7bc643e285f0e.sampled.jsonl
13
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_275100c1a44f4451b0343373ebc5637a.sampled.jsonl
14
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_27f05c041a1c401783f90b9415e40e4b.sampled.jsonl
15
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_28106e66bfd94978abbc15ec845aeddb.sampled.jsonl
16
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_2afd093fefad4c8da76cc539e8fb6137.sampled.jsonl
17
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_30d01c4edab64866bda8c609e90b4f4e.sampled.jsonl
18
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_34b0785b77814b7583433ddb27a61ae0.sampled.jsonl
19
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_34e78793c1e94eeebd92852399097596.sampled.jsonl
20
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_366012588bef4d749bbbea76ae701141.sampled.jsonl
21
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_36c2a955ddd84672bbc778aa4ad2fbaf.sampled.jsonl
22
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_3be6a5cc7428401393c23e5516a43537.sampled.jsonl
23
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_3cc6cab9266746a6befa23648aa43119.sampled.jsonl
24
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_3f09f384f0734a4b912bb75db3f812bc.sampled.jsonl
25
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_478afe8aaccb43e6be2de7e34e041ef3.sampled.jsonl
26
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_483f11d6bc864f7fbfbe63bdf3583ce2.sampled.jsonl
27
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_4b6883dc304c4e799620ec95b96dc91a.sampled.jsonl
28
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_4bebabdbd8544da7a2071864ccf81f2e.sampled.jsonl
29
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_4d44caf43c154ae4aaeab36eab0221c9.sampled.jsonl
30
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_4f98dc136ba94eeaa1ba6c974814b33c.sampled.jsonl
31
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_4ff3604761614a3db550ef758e6457b5.sampled.jsonl
32
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_50423e84046948b4a2a70e7e4538e12d.sampled.jsonl
33
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_58fad5994b4446c6bceb33453484acb4.sampled.jsonl
34
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_5abf005e4e634f1dbfa8bd20b5687092.sampled.jsonl
35
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_5f2b3517159b426bb1a9e81ca189abcd.sampled.jsonl
36
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_610e908cafaa4d53958de50ad700822a.sampled.jsonl
37
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_6353ab14cb8f4623a7d75678d9e7f44e.sampled.jsonl
38
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_64747f25102740bab0ab54559569342a.sampled.jsonl
39
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_6742e99802894114a3ba44841f49b168.sampled.jsonl
40
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_677e10f9b0af4c489e60670352e7e224.sampled.jsonl
41
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_68534e6a093744fa9f38fa1a9cf51232.sampled.jsonl
42
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_6adcf92fb2ee48059cb60579f2e931f7.sampled.jsonl
43
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_70f0aa43987643a7874286bca4faa66b.sampled.jsonl
44
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_7462f1a34f594e9f8334d9a0cbbf80e7.sampled.jsonl
45
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_78a13a25258f4d24923702c07445e20e.sampled.jsonl
46
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_78e3afc1cfee41fbb7eaae2e5bfaa17b.sampled.jsonl
47
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_791ed086a57f4879bb1596bed6d37bb3.sampled.jsonl
48
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_7b5cc18857a34a0981b54f082de55cf8.sampled.jsonl
49
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_7c54b908a2df4ec2ba316d2081fc674e.sampled.jsonl
50
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_7edd0af0b61c426e93e8bd3f549a8f78.sampled.jsonl
51
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_7fa232e63a5d44a88a267181e9ac47b4.sampled.jsonl
52
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_81138c01f3a84f7fa8b56bf3d8fa35ce.sampled.jsonl
53
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_82a9a647b0eb4eb080d7ac15a13c765b.sampled.jsonl
54
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_835ac26c7a70447b97f4ec38bcb969ed.sampled.jsonl
55
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_8bc3c4fae78c41d999b2ae6d97cce96c.sampled.jsonl
56
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_8dc430f8f7114f018440c7b3d990e602.sampled.jsonl
57
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_8e1db2cf6c98420a88bad52fd57f4aa7.sampled.jsonl
58
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_919156910e704e6ca52e0d4880cdbb63.sampled.jsonl
59
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_944beac1347f491faa88f43c25d26fe4.sampled.jsonl
60
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_96175b6e4c764abfbbf14e78d4fd6464.sampled.jsonl
61
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_977d1fcdab92452d9dc38b2f4a99389b.sampled.jsonl
62
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_9eea501af8544d0b88f0b002850829d4.sampled.jsonl
63
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_a26c51ffe2924fd8ad6694c6aa0eacc5.sampled.jsonl
64
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_a3a01a2f81ed4cd2afb30e175200b48f.sampled.jsonl
65
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_a3d3e6f3f7d5495ca9ecf94d808fd350.sampled.jsonl
66
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_a777da5620f1467f8df3616b17d533dc.sampled.jsonl
67
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_a8fcae75b0c3410faabcff02f0056a36.sampled.jsonl
68
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_aabc2d54d1c946908d3400228e0f238c.sampled.jsonl
69
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_ad160286662849f49d1e6de27c0f1d15.sampled.jsonl
70
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_adda41d791974289aff042e2e3d07ec3.sampled.jsonl
71
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_ae1813abc63f4b1998dfa608e7fe5588.sampled.jsonl
72
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_af7b386db97e4211a7378be08d7b3f4f.sampled.jsonl
73
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_b15c575fa9f8465d98f70ba2f2f73c6e.sampled.jsonl
74
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_b40763d0b9ce4e0d8fb5f519f1f49f8c.sampled.jsonl
75
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_b56453718c5f46efa9c46feb194b0d6e.sampled.jsonl
76
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_b6225e159b86432d9fa5bf226bb51393.sampled.jsonl
77
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_b821f640b8f14ed588bf48ae13f44098.sampled.jsonl
78
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_bfbcad9633f04601ba2f824d082eaacf.sampled.jsonl
79
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_c6cfd16905814d7c955df1f4754a8b11.sampled.jsonl
80
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_c82c6775f0b74dbdae4524bb9aebf0ef.sampled.jsonl
81
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_ca73c69896b34adbbe468d78d9f134bc.sampled.jsonl
82
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_cac864a472b948b0bfe18c8e9a19aeb5.sampled.jsonl
83
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_cb330e8dc8ac411eba2dc8676c9c4403.sampled.jsonl
84
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_d0a054a678fc4c38b496d10e91a2c735.sampled.jsonl
85
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_d148857715424aabbd32b8ffe56c4082.sampled.jsonl
86
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_d33701435f964c90a86c22e204dd5fde.sampled.jsonl
87
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_d448c2553f474193a1224df1c38f74d4.sampled.jsonl
88
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_d8d45c58819948c9b352d74383944c4a.sampled.jsonl
89
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_db611a692a704f6db3c18e77f79fd2f0.sampled.jsonl
90
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_dcaa5c8b729b4fb599399dbf4557e43e.sampled.jsonl
91
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_dda863d833614d04b96bbe21b161768d.sampled.jsonl
92
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_eabf427d56184fb89f9b5f27e73f7988.sampled.jsonl
93
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_eee6980922ca4a14b0c3341fa8a904d9.sampled.jsonl
94
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_f478ff72b57f4f4283c22ac22ae84134.sampled.jsonl
95
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_f931feb0e85940879d194c0e20d9e28a.sampled.jsonl
96
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_f9bbe6a065004a4c8e018c6ad63063b2.sampled.jsonl
97
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_fbfc552e48164acda6605fa31fc2f563.sampled.jsonl
98
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/github/filtered_fc817e4c16494957bcb89b166e91434f.sampled.jsonl
urls/stackexchange.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/stackexchange/stackexchange.jsonl
urls/wikipedia.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ https://data.together.xyz/redpajama-data-1T/v1.0.0/wikipedia/wiki.jsonl