diff --git a/2021_25/dedup/2201_25.py b/2021_25/dedup/2201_25.py new file mode 100644 index 0000000000000000000000000000000000000000..f4e25fe86bb2003ef3f2f27e69a7c1a63b7d0a97 --- /dev/null +++ b/2021_25/dedup/2201_25.py @@ -0,0 +1,107 @@ +# coding=utf-8 +# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Cleaned Indonesian split of the mC4 corpus.""" +import json +import glob +import gzip +import textwrap +import datasets +logger = datasets.logging.get_logger(__name__) + +file = sorted(glob.glob('/data/oscar_2201_25_dedup/data/*')) +_CITATION = """ +@article{JMLR:v21:20-074, + author = {Colin Raffel and Noam Shazeer and Adam Roberts and Katherine Lee and Sharan Narang and Michael Matena and Yanqi Zhou and Wei Li and Peter J. Liu}, + title = {Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer}, + journal = {Journal of Machine Learning Research}, + year = {2020}, + volume = {21}, + number = {140}, + pages = {1-67}, + url = {http://jmlr.org/papers/v21/20-074.html} +} +""" +_DESCRIPTION = """\ +A thoroughly cleaned version of the Italian portion of the multilingual +colossal, cleaned version of Common Crawl's web crawl corpus (mC4) by AllenAI. +Based on Common Crawl dataset: "https://commoncrawl.org". +This is the processed version of Google's mC4 dataset by AllenAI, with further cleaning +detailed in the repository README file. +""" +_HOMEPAGE = "https://github.com/allenai/allennlp/discussions/5056" +_LICENSE = "Open Data Commons Attribution License (ODC-By) v1.0" +_BASE_URL = "https://huggingface.co/datasets/munggok/mc4-id/resolve/main/mc4-id-filter/c4-id{split_suffix}.tfrecord-{index:05d}-of-{n_shards:05d}.json.gz" +_CONFIGS = { + "tiny": {"train": 100, "validation": 1}, + "small": {"train": 250, "validation": 2}, + "medium": {"train": 500, "validation": 4}, + "large": {"train": 750, "validation": 6}, + "full": {"train": 1016, "validation": 8} +} +class OscarConfig(datasets.BuilderConfig): + """BuilderConfig for the Clean mC4 Italian.""" + def __init__(self, **kwargs): + """BuilderConfig for Clean mC4 Italian. + Args: + **kwargs: keyword arguments forwarded to super. + """ + super().__init__(**kwargs) +class Oscar(datasets.GeneratorBasedBuilder): + """mC4, a colossal, cleaned version of Common Crawl's web crawl corpus.""" + BUILDER_CONFIGS = [ + OscarConfig( + name="full", + version=datasets.Version("1.0.0"), + description=textwrap.dedent( + f"""\ + The full cleaned version of the Italian portion of the multilingual C4 corpus. + Estimated size of compressed files: 103GB + """ + ) + ) + ] + def _info(self): + return datasets.DatasetInfo( + description=_DESCRIPTION, + features=datasets.Features( + { + "text": datasets.Value("string"), + "url": datasets.Value("string"), + "timestamp": datasets.Value("string"), + "meta": datasets.Value("string"), + } + ), + supervised_keys=None, + homepage=_HOMEPAGE, + license=_LICENSE, + citation=_CITATION, + ) + def _split_generators(self, dl_manager): + data_urls = {} + train_downloaded_files = file + return [ + datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepaths": train_downloaded_files}), + ] + def _generate_examples(self, filepaths): + """This function returns the examples in the raw (text) form by iterating on all the files.""" + id_ = 0 + for filepath in filepaths: + logger.info(f"Generating examples from {filepath}") + with gzip.open(open(filepath, "rb"), "rt", encoding="utf-8") as f: + for line in f: + if line: + example = json.loads(line) + yield id_, {'text':example['text'],'url':example['url'],'timestamp':example['timestamp'],'meta': example['meta']} + id_ += 1 diff --git a/2021_25/dedup/oscar-000000000001.json.gz b/2021_25/dedup/oscar-000000000001.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..c375886abacfb42d385951d995ccdfd6bd7a3e3f --- /dev/null +++ b/2021_25/dedup/oscar-000000000001.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c15704f7824a7a0c9f7caa46406da0156e34231c7a3a5b4873f6df35d927f95 +size 109931211 diff --git a/2021_25/dedup/oscar-000000000002.json.gz b/2021_25/dedup/oscar-000000000002.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2b68bbe1b0305a114f59a0d0bfeef58d9061e9a7 --- /dev/null +++ b/2021_25/dedup/oscar-000000000002.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733df479e595acd64f517dfbe553da8623c324789fd158e8e97db4dff818f8be +size 116192648 diff --git a/2021_25/dedup/oscar-000000000003.json.gz b/2021_25/dedup/oscar-000000000003.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d1abc1f42e3923d876e7b2d325ce46fe53fef72c --- /dev/null +++ b/2021_25/dedup/oscar-000000000003.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ec6b375189883d9d15354f707c2e022c57868bf54614832c688291df3be4bc +size 118682483 diff --git a/2021_25/dedup/oscar-000000000004.json.gz b/2021_25/dedup/oscar-000000000004.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2691c33cac157f78b96f579aabd44484a8160ee4 --- /dev/null +++ b/2021_25/dedup/oscar-000000000004.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0215068adff0c17e64afb415d40ea4eefc07e616f541d827842cea8a7417cf +size 117871352 diff --git a/2021_25/dedup/oscar-000000000005.json.gz b/2021_25/dedup/oscar-000000000005.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d3aa39f9ed3e6209d2ca6798740e48c7ad86060d --- /dev/null +++ b/2021_25/dedup/oscar-000000000005.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814023c8fab92cec4ae369780b8556a9783827cddf23e0c465c44ee939556029 +size 113556052 diff --git a/2021_25/dedup/oscar-000000000006.json.gz b/2021_25/dedup/oscar-000000000006.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f56983ea0cf18af16b313e0a55affc2db93f7f4e --- /dev/null +++ b/2021_25/dedup/oscar-000000000006.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7deda056419db6721f5009b0dc8fff4e0d1481c183a816cb25c89e77ee92fdcc +size 121203314 diff --git a/2021_25/dedup/oscar-000000000007.json.gz b/2021_25/dedup/oscar-000000000007.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..ab5450c891dc2990d208a552fa8f712620c9c486 --- /dev/null +++ b/2021_25/dedup/oscar-000000000007.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfeb2731e03f4dd810aa048b6de0cd76c020f3ccb2326d824ed2b2ac2ca1e9a +size 111931950 diff --git a/2021_25/dedup/oscar-000000000008.json.gz b/2021_25/dedup/oscar-000000000008.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3f144f2daeaf921f28208efeac4c0bd963044ea2 --- /dev/null +++ b/2021_25/dedup/oscar-000000000008.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6aa529f9724d14eda93555ffc7b0a5a0eefdd59191eb35af65e65adadfe7629 +size 113614722 diff --git a/2021_25/dedup/oscar-000000000009.json.gz b/2021_25/dedup/oscar-000000000009.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..df6ff0324e20eef656fe1bc1982220bbaece89d6 --- /dev/null +++ b/2021_25/dedup/oscar-000000000009.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59474b91592f4207df65f46227297a96412451a5edd6dbef78f6e0bb435ad7da +size 118313132 diff --git a/2021_25/dedup/oscar-000000000010.json.gz b/2021_25/dedup/oscar-000000000010.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..1f6f17acea934ea58b3b5f98020625bb66ca14ab --- /dev/null +++ b/2021_25/dedup/oscar-000000000010.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c965ef0c54c30012a895bb45af62a14ba4dcef786fb8c100d7456c2682d08b +size 108832866 diff --git a/2021_25/dedup/oscar-000000000011.json.gz b/2021_25/dedup/oscar-000000000011.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..9618381a1e1c6e814b158cb9f2609787924261d0 --- /dev/null +++ b/2021_25/dedup/oscar-000000000011.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629b91fb0c9431256be61e0fd5fdf340bea58a328248e5b47017c5b49b2b9064 +size 116368225 diff --git a/2021_25/dedup/oscar-000000000012.json.gz b/2021_25/dedup/oscar-000000000012.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..40a23026c8f57146c17dd16be096f3adcfcdb49f --- /dev/null +++ b/2021_25/dedup/oscar-000000000012.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b5a2652867bde4b6e2f8625a1eeecdcbf557ed9be911ed4dd71feaa3755e09 +size 122886702 diff --git a/2021_25/dedup/oscar-000000000013.json.gz b/2021_25/dedup/oscar-000000000013.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..0d15486406794830922f0a839d230b887b1c6f05 --- /dev/null +++ b/2021_25/dedup/oscar-000000000013.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d80d76eeb9e183aa122dc1bd27337c7b45423dc76444d69b85a0d83cf45e35 +size 110009664 diff --git a/2021_25/dedup/oscar-000000000014.json.gz b/2021_25/dedup/oscar-000000000014.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f62d9b6cf6c2901a924e1124052414665267a957 --- /dev/null +++ b/2021_25/dedup/oscar-000000000014.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fad10018867b2170bbd7693696e2f503a33dc0cacfeeebc6bb011d988cdfc78a +size 114571550 diff --git a/2021_25/dedup/oscar-000000000015.json.gz b/2021_25/dedup/oscar-000000000015.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..daa480841633ec5e4c6a2d30d1ff2fea7d1e4444 --- /dev/null +++ b/2021_25/dedup/oscar-000000000015.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24515daf025734727570adf895b8abdc8769586a66f100cee5a8db52b2a4af22 +size 118348666 diff --git a/2021_25/dedup/oscar-000000000016.json.gz b/2021_25/dedup/oscar-000000000016.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..cb1fe346ef1e4828085c64d2816bfbbe0c9a156b --- /dev/null +++ b/2021_25/dedup/oscar-000000000016.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da1760e8e6f14426d8beb198933873590f3a4910c36b01834e99aa8d13ee180 +size 118026356 diff --git a/2021_25/dedup/oscar-000000000017.json.gz b/2021_25/dedup/oscar-000000000017.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..56f28296a57befca400c5da43af15b6dc1b341e4 --- /dev/null +++ b/2021_25/dedup/oscar-000000000017.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46fc4c308f1af7f95a3ff1cd0d1c8a999dff3dd948b5f4b16f039857ca039ce5 +size 115396017 diff --git a/2021_25/dedup/oscar-000000000018.json.gz b/2021_25/dedup/oscar-000000000018.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..8e1970ed0e9b61b566a08013cafc4da01a5eda92 --- /dev/null +++ b/2021_25/dedup/oscar-000000000018.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1c2f7d385330e8f3a50d59dcf035041a5050642f55d009f5217bdefba4f334 +size 114366444 diff --git a/2021_25/dedup/oscar-000000000019.json.gz b/2021_25/dedup/oscar-000000000019.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2e79e74ace7c7153210389d8b1fea2daedd66d88 --- /dev/null +++ b/2021_25/dedup/oscar-000000000019.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c418057af23e27bbdada5de6e839012830fdeb6b98aca4d944e5e4753c6e88b9 +size 118940920 diff --git a/2021_25/dedup/oscar-000000000020.json.gz b/2021_25/dedup/oscar-000000000020.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..e9c4e9aacd38d9d0eacf48834d7036b65afbc9b8 --- /dev/null +++ b/2021_25/dedup/oscar-000000000020.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e90136c8c785203cfc0b38ff9d3b7cb143962a99662082e755cfe3c743891e5 +size 125441497 diff --git a/2021_25/dedup/oscar-000000000021.json.gz b/2021_25/dedup/oscar-000000000021.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..4e7cd253a8d18fb490d172eb0c28f57ef17e728e --- /dev/null +++ b/2021_25/dedup/oscar-000000000021.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7092eb2577682b889e656c82dbd992ca49e645ad933405291cd1d4333e8d5f +size 118694092 diff --git a/2021_25/dedup/oscar-000000000022.json.gz b/2021_25/dedup/oscar-000000000022.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..449e6cdf7b5823d33bf4da18b73b3823040bcbf0 --- /dev/null +++ b/2021_25/dedup/oscar-000000000022.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03fe2936166f18f1b910f97766b1cc64f796ecb487b2fa9f50d4fa32c4a3064 +size 120946344 diff --git a/2021_25/dedup/oscar-000000000023.json.gz b/2021_25/dedup/oscar-000000000023.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..59439cb07f3920995140ee1dcdbf19c601d29fd7 --- /dev/null +++ b/2021_25/dedup/oscar-000000000023.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746449abd5cd37fd4091c7bff13b3c26fcc3baa244bd385be215d930a6a7dc70 +size 121177104 diff --git a/2021_25/dedup/oscar-000000000024.json.gz b/2021_25/dedup/oscar-000000000024.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..bea98028a2e45cf33ab3b654d09be62bc9e240ea --- /dev/null +++ b/2021_25/dedup/oscar-000000000024.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80db8481739adc5e25050a9ef9579585c467f72a3b2e71499c38b740de8d23ee +size 124466183 diff --git a/2021_25/dedup/oscar-000000000025.json.gz b/2021_25/dedup/oscar-000000000025.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..5b566999b107f14dbb6057ea674729bd8af06338 --- /dev/null +++ b/2021_25/dedup/oscar-000000000025.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376323c43c8aa476a130b08f85ae435bdf56fbe234649697a226b69d43548717 +size 118646650 diff --git a/2021_25/dedup/oscar-000000000026.json.gz b/2021_25/dedup/oscar-000000000026.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..079f576bbd367feeab3f2f5380f01fa230876aee --- /dev/null +++ b/2021_25/dedup/oscar-000000000026.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ca05215e7a336b66c7036bb745e1ef4a3d6d447fa33d159541b04e967d8eba +size 122982379 diff --git a/2021_25/dedup/oscar-000000000027.json.gz b/2021_25/dedup/oscar-000000000027.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..1e3d6d23db94cb96b5079a1bdaae77bc0dd4d180 --- /dev/null +++ b/2021_25/dedup/oscar-000000000027.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72115b1e1352ed1c9c6b7b94d01e80c32ebb4512289dd5f57c36bd15ffc90af +size 121966342 diff --git a/2021_25/dedup/oscar-000000000028.json.gz b/2021_25/dedup/oscar-000000000028.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..b0e491338dad81c212bd4d3e04c164fca4897648 --- /dev/null +++ b/2021_25/dedup/oscar-000000000028.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c43fc7b94a8a84e6df0202510f015f4646bb230fa338ba3659fe73f37e7d6f +size 116353613 diff --git a/2021_25/dedup/oscar-000000000029.json.gz b/2021_25/dedup/oscar-000000000029.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..c25f26eee550b89cc8066d580cb847ba478b50f3 --- /dev/null +++ b/2021_25/dedup/oscar-000000000029.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb25886af330b79dc5e0fe74d225d6c02e0790d1c6ccbc24f1093479cce4d1a +size 115313551 diff --git a/2021_25/dedup/oscar-000000000030.json.gz b/2021_25/dedup/oscar-000000000030.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..e7d7e26d9d3371ad32e5e081c931ca7f12d1a35e --- /dev/null +++ b/2021_25/dedup/oscar-000000000030.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312113b2c54eaadde815576ba09040ecd117da70e78b6f6bc06d9b787faae0f0 +size 108306609 diff --git a/2021_25/dedup/oscar-000000000031.json.gz b/2021_25/dedup/oscar-000000000031.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..1aa0e04e60e721a91d331b7fb7261fc50f6cc798 --- /dev/null +++ b/2021_25/dedup/oscar-000000000031.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3268604a1ae48272746ddafa134b5e5be13b39b723621b17f46fe63671678641 +size 115109695 diff --git a/2021_25/dedup/oscar-000000000032.json.gz b/2021_25/dedup/oscar-000000000032.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..9746c8c9c8717eff2c5a66f407fcf81091b45dd0 --- /dev/null +++ b/2021_25/dedup/oscar-000000000032.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191cc98636be9f47000e9bb11521937f467633a31aef66c0e215ac8cbf50c7eb +size 24600883 diff --git a/2021_25/neardup/oscar-neardup-000000000001.json.gz b/2021_25/neardup/oscar-neardup-000000000001.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..ec5adb03444f2c0f2c25efb47aa05bffd36ba95d --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000001.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51b4001e95d8c258b87fcd2c346aa6bc348a55ee69bd5111cc495878b5ea7cf +size 105753540 diff --git a/2021_25/neardup/oscar-neardup-000000000002.json.gz b/2021_25/neardup/oscar-neardup-000000000002.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..45078fe51199db7745534d3fe1870b8f48936120 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000002.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970ad1a70c6ad85ad9b25a1b3e5745830c2eb299bd1c84459fd2909b0c528c1b +size 112228223 diff --git a/2021_25/neardup/oscar-neardup-000000000003.json.gz b/2021_25/neardup/oscar-neardup-000000000003.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..a2ca5d737837f2f632738a3bb41635b5ce4741bd --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000003.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59883c29b4fe166609a92e75080916423c444dab5161f0ce23aa738fd6ca6da2 +size 114791029 diff --git a/2021_25/neardup/oscar-neardup-000000000004.json.gz b/2021_25/neardup/oscar-neardup-000000000004.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..df3bfe0c22e713003bba8ce1048d0ffb409aac7b --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000004.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a1a58b4174c269b60f2100274ca724736c3a1bacc1585fea26bf4effdaf92e +size 107718449 diff --git a/2021_25/neardup/oscar-neardup-000000000005.json.gz b/2021_25/neardup/oscar-neardup-000000000005.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..b772d455c0756f006ed60463cee3682c7c546011 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000005.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd25ce1d683e57354c997fbfa932d9c13007eab0c0b2dd1400d2aebb1667b81 +size 113948043 diff --git a/2021_25/neardup/oscar-neardup-000000000006.json.gz b/2021_25/neardup/oscar-neardup-000000000006.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..4c3f21dd8e1555908469c7323ac163af2e2439fd --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000006.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220ab518cf87df11ca8ec1118a2139c44dd1c962a215e92cd6a10657226e67d8 +size 109082271 diff --git a/2021_25/neardup/oscar-neardup-000000000007.json.gz b/2021_25/neardup/oscar-neardup-000000000007.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f6bf1b0efb60e3879aa3edf69a8ee7d0c0e1b6ee --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000007.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df8e5182748b0a82adc6491a3e3875625e93ed9e31aebc62814329a1c69cc63 +size 108770623 diff --git a/2021_25/neardup/oscar-neardup-000000000008.json.gz b/2021_25/neardup/oscar-neardup-000000000008.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3bc6473725b96c40312c8772d970aa15e7b11a4e --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000008.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35932533700881f25d2aeee3369e5265959500aaa89e9dfe6c11c1f8c5acd01a +size 112344591 diff --git a/2021_25/neardup/oscar-neardup-000000000009.json.gz b/2021_25/neardup/oscar-neardup-000000000009.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..9ec644f107fd8b0eec6cf3164487cca61a908a7a --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000009.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94755c94a4433ad3558917bc3538ea058ce03ff04269a54fbc06ee8ffa944eca +size 105995316 diff --git a/2021_25/neardup/oscar-neardup-000000000010.json.gz b/2021_25/neardup/oscar-neardup-000000000010.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..7a2f5ed9b82a9c54c68ee8fda5483dec780ba254 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000010.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241e383a351ac1477e9ad75dc146f93e41a0d044d41a207f8877a36fa8ea6f6b +size 111688444 diff --git a/2021_25/neardup/oscar-neardup-000000000011.json.gz b/2021_25/neardup/oscar-neardup-000000000011.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..bf802cf5a8ffd4f086672de2ea22f41be1219d11 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000011.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d1eeed6e64fc8d7c91c9ded409a8d9f4e55e65678e240ee2d03441e37fb443 +size 108546702 diff --git a/2021_25/neardup/oscar-neardup-000000000012.json.gz b/2021_25/neardup/oscar-neardup-000000000012.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..ee46af44bfba2b6a21624b3b1c14c24aacbd6b96 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000012.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8687931614b71be62c3f89c5da256bca211196bcfcc2b9e4fbd08a613e589108 +size 105614636 diff --git a/2021_25/neardup/oscar-neardup-000000000013.json.gz b/2021_25/neardup/oscar-neardup-000000000013.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..0865cbe137a5505ae3e2cc76cb48e185e5de9ce4 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000013.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d022cc09426f283d15b62b87ac793277c048a17056b3972aae60392a6b1f53b +size 111559232 diff --git a/2021_25/neardup/oscar-neardup-000000000014.json.gz b/2021_25/neardup/oscar-neardup-000000000014.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f4b17943a3b11ce39cd78693dadc78386d997d9a --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000014.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da39c2ad61050a8cc364fb0f1d39f49ef73aac297113eaff21eed672c59e63ad +size 112772918 diff --git a/2021_25/neardup/oscar-neardup-000000000015.json.gz b/2021_25/neardup/oscar-neardup-000000000015.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..afdd7a14511485615b1711be6ce7c4b0ccee348e --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000015.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c8cfeea5c2c58c19dfa239509d050d2b5c58b2ad708bbaffb5755854edc2f3 +size 110811266 diff --git a/2021_25/neardup/oscar-neardup-000000000016.json.gz b/2021_25/neardup/oscar-neardup-000000000016.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2a8a7dcfb4ebc7b8fb29601215ee008ecdfde86f --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000016.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79bf3a0bb889e91c8d6c9aedfdf9ae4b8a9d9b1f4bae61fab257e46c2ab5a4a +size 109152904 diff --git a/2021_25/neardup/oscar-neardup-000000000017.json.gz b/2021_25/neardup/oscar-neardup-000000000017.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..03a82ee38d96fff65b1310b898e1aca4b06b9cff --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000017.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8929c937133434563cc37e9c528bb0c6d46461803af0a70252e8495ebd84f2 +size 116248804 diff --git a/2021_25/neardup/oscar-neardup-000000000018.json.gz b/2021_25/neardup/oscar-neardup-000000000018.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..4b79de6e0577a1b944561958b8ef33c5a0ec07e5 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000018.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a255861058efa957493f7f60723d958113ca0435097287736f8757300568653f +size 119866479 diff --git a/2021_25/neardup/oscar-neardup-000000000019.json.gz b/2021_25/neardup/oscar-neardup-000000000019.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..684f6dc30b00a7efd14bc67ab65135cfe90c5e76 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000019.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687f0e7ff2983b49118a3fae4d2135a0d9e1cf4502553c8fd3f3fcbb6a427990 +size 115226575 diff --git a/2021_25/neardup/oscar-neardup-000000000020.json.gz b/2021_25/neardup/oscar-neardup-000000000020.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d3e649398e45831cfb4e75ac4ffda16063461315 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000020.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b32ba6fc363ccac1de23ef12dd0bd2082b3e4a8a3b357e88ad0de59071a475 +size 114931183 diff --git a/2021_25/neardup/oscar-neardup-000000000021.json.gz b/2021_25/neardup/oscar-neardup-000000000021.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..1cac2573ffa35d5a416b47d347c2b3da12b8c219 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000021.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc8bfac2d94f3c342b6c41519e82ce1f14cfe08523b898eb85ac54b66a98837 +size 119308410 diff --git a/2021_25/neardup/oscar-neardup-000000000022.json.gz b/2021_25/neardup/oscar-neardup-000000000022.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..fa47f8cf5243ffcdb843f8145987ae67cdc0083e --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000022.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d015181e8867f124d4e3a793505e6f922c6e616439bdd0328846a75b8c6815 +size 118358880 diff --git a/2021_25/neardup/oscar-neardup-000000000023.json.gz b/2021_25/neardup/oscar-neardup-000000000023.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..0ea36ddbdec1d6ec243a68c9c14927e731d28b4d --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000023.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44211e2ef6bf2b42426efea1e422f9d6514413101a2e3eb631c5a020d89b0871 +size 118152503 diff --git a/2021_25/neardup/oscar-neardup-000000000024.json.gz b/2021_25/neardup/oscar-neardup-000000000024.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..bdeda26c2afc11ce191481cc0ccc132e961db9bc --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000024.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5c60978a7a1b0c9551c8f83e670cd2a23bfd915c895b2e7a16cfc854defc8d +size 114593592 diff --git a/2021_25/neardup/oscar-neardup-000000000025.json.gz b/2021_25/neardup/oscar-neardup-000000000025.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..0caf5b5541233853d4d89becc93c6006b2e104c9 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000025.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e0c1d66e26f921aa86a9d42044193ae2c0a38ae9568560abececefa9585c47 +size 114040081 diff --git a/2021_25/neardup/oscar-neardup-000000000026.json.gz b/2021_25/neardup/oscar-neardup-000000000026.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..868204ea699674ae82258a37b66c5d5baa0afc10 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000026.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d7eeb2b3e0603cf1289c6c6df3189cfb734ea17963a756254abc0dd3ac5dcc +size 108135037 diff --git a/2021_25/neardup/oscar-neardup-000000000027.json.gz b/2021_25/neardup/oscar-neardup-000000000027.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..8d9d9fb729bb5e0c8a00e0744cb50b1df7bf5925 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000027.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126f1e6cf7d77bd3e5a00dc12a1e0fdfe3e76d82b131a9c6413395756c735a05 +size 103605224 diff --git a/2021_25/neardup/oscar-neardup-000000000028.json.gz b/2021_25/neardup/oscar-neardup-000000000028.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..497173e2ea4542ca8675e913de33896ee3b0b998 --- /dev/null +++ b/2021_25/neardup/oscar-neardup-000000000028.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f18d0418b8a7fc8d61f69add3a824bcf16f0ef6b193cdc62fd4c9fef7e6ddd +size 97572480 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000001.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000001.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2995930bb4c15aa29b49654d6db6ebba5616b013 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000001.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ce3a40eee778d6698af585a17172be82756e6e2964a61113f1a84f6f78d203 +size 54367355 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000002.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000002.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..779acf1db55ea8005ecbb62a006ef4a9e800869e --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000002.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5724cd4a541be185ea272d21b89bf001eceaaba365a2bb5dd7462627ca1513ee +size 58013494 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000003.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000003.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..c8fd6ba5423b4628dcc88f7fab71890bdc4c82a1 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000003.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb3b7f84dae9421b95fb7133f0476feb06c2080ef0027e45ecf78bce4796259 +size 56187840 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000004.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000004.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..966d811f772680a031bd5e7265cdfe1ac6b4123c --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000004.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ada0e4d757d9f1cbce071bf6dabc0a61bc74ee0a48f63373d9d95b4b54b36c3c +size 55452670 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000005.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000005.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..dc7808def8fd0df2db1d9ef22f1ca770a310d32b --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000005.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9b79f7716180718deb9a562aee02f41198a3cff776e45dabd2898b8970f27b +size 55860058 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000006.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000006.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d3b7413d1ab25c42a081b02851b43f4e05cbfe43 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000006.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa89aa3bd7c79ed07ebfffb9072d2a59d1adb2f93623d6b1490018b76618c8dc +size 54288393 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000007.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000007.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..90b71a651768f4ed67df13abf621519d446dc188 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000007.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c68482e1d4dc1637c5991f2fb1a9d4fedbf24bc40abf2d53bfc3ded54829217 +size 55988273 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000008.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000008.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..14985a6b2bda09a95c21c2846bf35e63822a2817 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000008.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28c15090371f80b5a61c5fc3b65910ba11f599974c9c712ae29a0225c152a0c +size 54559712 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000009.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000009.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..32cbcf5f35bea9c542e8751dc79d8dd1b6d7feb0 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000009.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3825dd4a6d6aa1e38d468ee823b869bc446bc07eea76ae175d4911e8236efc8b +size 56684641 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000010.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000010.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f53b74c9f8c3dea942c0ac31efff6716f2cb1eb1 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000010.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354ead6dfa43be4c0fd355d056e2791bc173e0c76b780e37701883bf35d65699 +size 55485410 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000011.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000011.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..56c4c4599d37aee0d1d02b4274bfa6dc24db50f0 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000011.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37caf18f4b05133c096e6e91bde8d79d99f3966d5533cc265978896aaef66e6b +size 54942824 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000012.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000012.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..da4675fc1414001decb776e634ad002498ae305b --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000012.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab9120d4337e050e6085858682a2a45b253c5d42d36c9248fdcb9da5a8d2b12 +size 55164162 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000013.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000013.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..a299e6c757a16ea05691d8ce575e88fb62a8250f --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000013.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78a5b7e74eab5affccaebf012fa810fc1d1bacf2e76675387343e6d87721e83 +size 55016383 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000014.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000014.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..4051ab7a75e8c4922f917800187bd71689993a11 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000014.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c6d8d62d132ee02756473b35861fe30411760ed47e60985e9c65a0ce46083e1 +size 56620099 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000015.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000015.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..8e2b408990bb52859692c0632be9216d1c894a8e --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000015.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9123c9b80630983d4e3d7a0abc4fda05f3f33936be285f60f3e539e9cee5d87 +size 56501433 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000016.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000016.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..c9f8f70e2b977ff419811243e5fbfbb7ea0c9b7e --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000016.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f10b3296e76feb022f419778ec6614a6ffb218de2bee5c9e16563151a6c0a69 +size 55939087 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000017.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000017.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f1618cec66573d1345a1fe1393ed83eb70b7d837 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000017.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f431a15fb9fe59b77f87a6b44140dd5827dc6bffe3ceab7cff54a2f7dd61121 +size 57116084 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000018.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000018.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..489cfa251e6a1d6c114808bd901a953cd6f60789 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000018.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8096837ab73292c3f0ebb1c454a9dc097fb228903e96b999f388a61ae1cb006f +size 55413407 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000019.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000019.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..594e834ae94862f92fba378df50153c871bd51eb --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000019.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c0384f7a1eb98db3d370993de68671cc70832209eac0ffcce1802b9137bef3 +size 56680569 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000020.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000020.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..c6a7061bab2770e8412415ad2686bb695200d50b --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000020.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476ed1761c8028557e7506f8910a81882c6efd8ff779a621e92356a5d1f7f66c +size 57557962 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000021.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000021.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..7fa41f2d6504d493d49ccd62d0c5b153e3e6e653 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000021.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed6595850d298878414b0ae06c19b07deba2fc5e23b031296e2cf53d44ead4ff +size 57282882 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000022.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000022.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..436bb04528e4ca31abe3c927126832a6a8f0a80f --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000022.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc567298cb280bce1c8b5eca4c8a7562fdd55bbf1c8d832bf4dc13da0a6c14f +size 57766784 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000023.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000023.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..b61195377be37eff751cea35bd718a9c8d359852 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000023.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:021f24d79a983df82a22934d27ca3cd1459165dac2e7acf658b340b9fe33fe79 +size 60384492 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000024.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000024.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f82ae82521472a4f7429c775372e0a0f770fc40d --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000024.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01795077c552af73cf7e46fbbad37af1dba34105a1674bcb89675437b33236b8 +size 56014449 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000025.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000025.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..a318594607ea01976525f99153ea1a3749a0f57a --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000025.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7771bd0aa632ea51adb3a2c05bb2fadcaf4cb31e34ace1024351391631162392 +size 55579723 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000026.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000026.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..725e503e8335a26ee8e1d0a8c1385009eac90bbe --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000026.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855e88105a452a3ac639274b5ffbd3aa5c36466131644cf6de68d0c31375e02a +size 53821358 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000027.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000027.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..5fe096e009da357eff303f5a8b96d9b35d075adf --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000027.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013f8b927eb851ed656f9e7035fbd06a04fd9f2e624debd85586b64b5667f2f2 +size 53873722 diff --git a/2021_25/neardup_clean/cleaned_oscar-neardup-000000000028.json.gz b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000028.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..ec9f467ecea07633caf411b1e926deb0b649e5f0 --- /dev/null +++ b/2021_25/neardup_clean/cleaned_oscar-neardup-000000000028.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b162879a8ab2e529da8a087618240a5d98bd5f9dcde99d81d2f875ed2f58f58 +size 49846279 diff --git a/2021_25/neardup_clean/neardup_clean.py b/2021_25/neardup_clean/neardup_clean.py new file mode 100644 index 0000000000000000000000000000000000000000..e30855081b9cc4817f0148c7f8a3bb73404405f9 --- /dev/null +++ b/2021_25/neardup_clean/neardup_clean.py @@ -0,0 +1,107 @@ +# coding=utf-8 +# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Cleaned Indonesian split of the mC4 corpus.""" +import json +import glob +import gzip +import textwrap +import datasets +logger = datasets.logging.get_logger(__name__) + +file = sorted(glob.glob('/data/oscar_id/2021_25/neardup_clean/*.gz')) +_CITATION = """ +@article{JMLR:v21:20-074, + author = {Colin Raffel and Noam Shazeer and Adam Roberts and Katherine Lee and Sharan Narang and Michael Matena and Yanqi Zhou and Wei Li and Peter J. Liu}, + title = {Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer}, + journal = {Journal of Machine Learning Research}, + year = {2020}, + volume = {21}, + number = {140}, + pages = {1-67}, + url = {http://jmlr.org/papers/v21/20-074.html} +} +""" +_DESCRIPTION = """\ +A thoroughly cleaned version of the Italian portion of the multilingual +colossal, cleaned version of Common Crawl's web crawl corpus (mC4) by AllenAI. +Based on Common Crawl dataset: "https://commoncrawl.org". +This is the processed version of Google's mC4 dataset by AllenAI, with further cleaning +detailed in the repository README file. +""" +_HOMEPAGE = "https://github.com/allenai/allennlp/discussions/5056" +_LICENSE = "Open Data Commons Attribution License (ODC-By) v1.0" +_BASE_URL = "https://huggingface.co/datasets/munggok/mc4-id/resolve/main/mc4-id-filter/c4-id{split_suffix}.tfrecord-{index:05d}-of-{n_shards:05d}.json.gz" +_CONFIGS = { + "tiny": {"train": 100, "validation": 1}, + "small": {"train": 250, "validation": 2}, + "medium": {"train": 500, "validation": 4}, + "large": {"train": 750, "validation": 6}, + "full": {"train": 1016, "validation": 8} +} +class OscarConfig(datasets.BuilderConfig): + """BuilderConfig for the Clean mC4 Italian.""" + def __init__(self, **kwargs): + """BuilderConfig for Clean mC4 Italian. + Args: + **kwargs: keyword arguments forwarded to super. + """ + super().__init__(**kwargs) +class Oscar(datasets.GeneratorBasedBuilder): + """mC4, a colossal, cleaned version of Common Crawl's web crawl corpus.""" + BUILDER_CONFIGS = [ + OscarConfig( + name="full", + version=datasets.Version("1.0.0"), + description=textwrap.dedent( + f"""\ + The full cleaned version of the Italian portion of the multilingual C4 corpus. + Estimated size of compressed files: 103GB + """ + ) + ) + ] + def _info(self): + return datasets.DatasetInfo( + description=_DESCRIPTION, + features=datasets.Features( + { + "text": datasets.Value("string"), + "url": datasets.Value("string"), + "timestamp": datasets.Value("string"), + "meta": datasets.Value("string"), + } + ), + supervised_keys=None, + homepage=_HOMEPAGE, + license=_LICENSE, + citation=_CITATION, + ) + def _split_generators(self, dl_manager): + data_urls = {} + train_downloaded_files = file + return [ + datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepaths": train_downloaded_files}), + ] + def _generate_examples(self, filepaths): + """This function returns the examples in the raw (text) form by iterating on all the files.""" + id_ = 0 + for filepath in filepaths: + logger.info(f"Generating examples from {filepath}") + with gzip.open(open(filepath, "rb"), "rt", encoding="utf-8") as f: + for line in f: + if line: + example = json.loads(line) + yield id_, {'text':example['text'],'url':example['url'],'timestamp':example['timestamp'],'meta': example['meta']} + id_ += 1 diff --git a/2021_25/raw/loader.py b/2021_25/raw/loader.py new file mode 100644 index 0000000000000000000000000000000000000000..c0c762f1f18580a3e02490211e20c7e1f519ea2a --- /dev/null +++ b/2021_25/raw/loader.py @@ -0,0 +1,118 @@ +# coding=utf-8 +# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Cleaned Indonesian split of the mC4 corpus.""" +import json +import glob +import gzip +import textwrap +import datasets +import zstandard as zstd +logger = datasets.logging.get_logger(__name__) + +file = sorted(glob.glob('/data/KoPI-CC/2021_25/raw/*.zst')) +_CITATION = """ +@article{JMLR:v21:20-074, + author = {Colin Raffel and Noam Shazeer and Adam Roberts and Katherine Lee and Sharan Narang and Michael Matena and Yanqi Zhou and Wei Li and Peter J. Liu}, + title = {Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer}, + journal = {Journal of Machine Learning Research}, + year = {2020}, + volume = {21}, + number = {140}, + pages = {1-67}, + url = {http://jmlr.org/papers/v21/20-074.html} +} +""" +_DESCRIPTION = """\ +A thoroughly cleaned version of the Italian portion of the multilingual +colossal, cleaned version of Common Crawl's web crawl corpus (mC4) by AllenAI. +Based on Common Crawl dataset: "https://commoncrawl.org". +This is the processed version of Google's mC4 dataset by AllenAI, with further cleaning +detailed in the repository README file. +""" +_HOMEPAGE = "https://github.com/allenai/allennlp/discussions/5056" +_LICENSE = "Open Data Commons Attribution License (ODC-By) v1.0" +_BASE_URL = "https://huggingface.co/datasets/munggok/mc4-id/resolve/main/mc4-id-filter/c4-id{split_suffix}.tfrecord-{index:05d}-of-{n_shards:05d}.json.gz" +_CONFIGS = { + "tiny": {"train": 100, "validation": 1}, + "small": {"train": 250, "validation": 2}, + "medium": {"train": 500, "validation": 4}, + "large": {"train": 750, "validation": 6}, + "full": {"train": 1016, "validation": 8} +} +class OscarConfig(datasets.BuilderConfig): + """BuilderConfig for the Clean mC4 Italian.""" + def __init__(self, **kwargs): + """BuilderConfig for Clean mC4 Italian. + Args: + **kwargs: keyword arguments forwarded to super. + """ + super().__init__(**kwargs) +class Oscar(datasets.GeneratorBasedBuilder): + """mC4, a colossal, cleaned version of Common Crawl's web crawl corpus.""" + BUILDER_CONFIGS = [ + OscarConfig( + name="full", + version=datasets.Version("1.0.0"), + description=textwrap.dedent( + f"""\ + The full cleaned version of the Italian portion of the multilingual C4 corpus. + Estimated size of compressed files: 103GB + """ + ) + ) + ] + def _info(self): + return datasets.DatasetInfo( + description=_DESCRIPTION, + features=datasets.Features( + { + "text": datasets.Value("string"), + "url": datasets.Value("string"), + "timestamp": datasets.Value("string"), + "meta": datasets.Value("string"), + } + ), + supervised_keys=None, + homepage=_HOMEPAGE, + license=_LICENSE, + citation=_CITATION, + ) + def _split_generators(self, dl_manager): + data_urls = {} + train_downloaded_files = file + return [ + datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepaths": train_downloaded_files}), + ] + def _generate_examples(self, filepaths): + """This function returns the examples in the raw (text) form by iterating on all the files.""" + id_ = 0 + for filepath in filepaths: + logger.info(f"Generating examples from {filepath}") + with zstd.open(open(filepath, "rb"), "rt", encoding="utf-8") as f: + for line in f: + if line: + example = json.loads(line) + meta = dict() + meta["warc_headers"] = example["warc_headers"] + meta["warc_headers"]["warc-identified-content-language"] = example[ + "warc_headers" + ].get("warc-identified-content-language") + meta["identification"] = example["metadata"]["identification"] + meta["annotations"] = example["metadata"]["annotation"] + meta["line_identifications"] = example["metadata"][ + "sentence_identifications" + ] + yield id_, {'text':example['content'],'url':example['warc_headers']['warc-target-uri'],'timestamp':example['warc_headers']['warc-date'],"meta": json.dumps(meta)} + id_ += 1