diff --git a/2021_17/dedup/2201-17_dedup.py b/2021_17/dedup/2201-17_dedup.py new file mode 100644 index 0000000000000000000000000000000000000000..c1d191bfc7ecad73429166749c2834a057c889de --- /dev/null +++ b/2021_17/dedup/2201-17_dedup.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/2201-17_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_17/dedup/oscar-000000000001.json.gz b/2021_17/dedup/oscar-000000000001.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..301bdfe36f8ba700462e79d6ff49ecd494c4b099 --- /dev/null +++ b/2021_17/dedup/oscar-000000000001.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476db9aa7a3f3566f3749f9db3b703f4f51976796ca38c0194642c11d2ffbce1 +size 115195703 diff --git a/2021_17/dedup/oscar-000000000002.json.gz b/2021_17/dedup/oscar-000000000002.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3de3e88fb8f9cc5dcbf36ff43c50767eb73403bc --- /dev/null +++ b/2021_17/dedup/oscar-000000000002.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82de753e8ee524915e5a32757fd7b939be2859041f72a1007cc34e398d672687 +size 116784779 diff --git a/2021_17/dedup/oscar-000000000003.json.gz b/2021_17/dedup/oscar-000000000003.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..83c7f6de1e9db2d522bc5ead31d93d7f768e4800 --- /dev/null +++ b/2021_17/dedup/oscar-000000000003.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5134551b16b939ce84e89b5a525a929db10934c34191c0b528ddcbee1cd9a847 +size 118728885 diff --git a/2021_17/dedup/oscar-000000000004.json.gz b/2021_17/dedup/oscar-000000000004.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..78fdb1911d1454741b95941da3ae4bf85c700e11 --- /dev/null +++ b/2021_17/dedup/oscar-000000000004.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5030ae4a7afee51d196b9329ed0dd05586bde2edd376c29012f99ba81700ba +size 113699820 diff --git a/2021_17/dedup/oscar-000000000005.json.gz b/2021_17/dedup/oscar-000000000005.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..40da40299fd74fbfb8a19684360256c2a0ae78ce --- /dev/null +++ b/2021_17/dedup/oscar-000000000005.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6569c571c08ee82f10496ff1543da5297ed92d0aefc98aa0e889a8f0fd4f2a3d +size 114364718 diff --git a/2021_17/dedup/oscar-000000000006.json.gz b/2021_17/dedup/oscar-000000000006.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3ffbb3ecfd7a756f2ab8f67cfaee977252495464 --- /dev/null +++ b/2021_17/dedup/oscar-000000000006.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:458ccffdd0eeea951807fcd689ed3849141c3d3e329f80f2d8e35c8218f74fb9 +size 118384043 diff --git a/2021_17/dedup/oscar-000000000007.json.gz b/2021_17/dedup/oscar-000000000007.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3b49ca8e2338da1c9647ea5ff34854d29fb1a301 --- /dev/null +++ b/2021_17/dedup/oscar-000000000007.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6a1f9980410e7feddd8f5d79622e71edb06e29b6489216cea3b90c16457775 +size 127451420 diff --git a/2021_17/dedup/oscar-000000000008.json.gz b/2021_17/dedup/oscar-000000000008.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..a545d6cde4f43bf9ec104375bc6afc88cffaf13c --- /dev/null +++ b/2021_17/dedup/oscar-000000000008.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7417d6a62c8cb16053749a5053431a59add314063e37fc1e20549a6122abcb +size 126596069 diff --git a/2021_17/dedup/oscar-000000000009.json.gz b/2021_17/dedup/oscar-000000000009.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..67d71a4f4c78bb00a33fd687a52a8191b00e6e03 --- /dev/null +++ b/2021_17/dedup/oscar-000000000009.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb5d08798afb9c6dbe9f8a9815e6a9ccd7e8c3d8163d3072bd52f9c249fc18ce +size 119366400 diff --git a/2021_17/dedup/oscar-000000000010.json.gz b/2021_17/dedup/oscar-000000000010.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f8d26fd23c00779a684563354ab6b3dc358649b9 --- /dev/null +++ b/2021_17/dedup/oscar-000000000010.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94aca5dbb5c963088078e7b7e35c1d1edb2492e003f179fdc60ae2e1db88daa8 +size 113885196 diff --git a/2021_17/dedup/oscar-000000000011.json.gz b/2021_17/dedup/oscar-000000000011.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d09363be9336405af7ad3d7edd3694b94661cc6d --- /dev/null +++ b/2021_17/dedup/oscar-000000000011.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8901633102935790a03655c5eb1590cb5794ab022f8737133feeb60e8701fc4 +size 122025669 diff --git a/2021_17/dedup/oscar-000000000012.json.gz b/2021_17/dedup/oscar-000000000012.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..48621d9a89302ac2a631707eef34ce3c043a8a08 --- /dev/null +++ b/2021_17/dedup/oscar-000000000012.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a87f1c5906019173072b66812bcbd342aff143aae36ac710f49905a1ca57d34 +size 126974926 diff --git a/2021_17/dedup/oscar-000000000013.json.gz b/2021_17/dedup/oscar-000000000013.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d392fe2533365356b8bfc96e69b55267e2235e63 --- /dev/null +++ b/2021_17/dedup/oscar-000000000013.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926ae1bb53dbcfa1be7501d1048710a6df1abaa9ca69bbe0abddc40e51d6e699 +size 112103902 diff --git a/2021_17/dedup/oscar-000000000014.json.gz b/2021_17/dedup/oscar-000000000014.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..4d95cd552688d2f63b33519cf877115db1b4a765 --- /dev/null +++ b/2021_17/dedup/oscar-000000000014.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d4b45dc3a1b90c1036ff76610e247698bdcdadb641e8f4045b612583d3c28e +size 117645267 diff --git a/2021_17/dedup/oscar-000000000015.json.gz b/2021_17/dedup/oscar-000000000015.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..97013efbbf04a4ed855aef4ea0c6190242e2fab9 --- /dev/null +++ b/2021_17/dedup/oscar-000000000015.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7739591aaf9d001528fa22d92e8e5028ab5fdb16949fe56c89009fd31ebc0c +size 120927179 diff --git a/2021_17/dedup/oscar-000000000016.json.gz b/2021_17/dedup/oscar-000000000016.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..7ff4627b0984cfe88877d70cd97d1a59ac7bf2c3 --- /dev/null +++ b/2021_17/dedup/oscar-000000000016.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10071112608758085b325a33cf4647db46e9997d17736a1244a5ab6455bdaabf +size 121319906 diff --git a/2021_17/dedup/oscar-000000000017.json.gz b/2021_17/dedup/oscar-000000000017.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..a4d875fcf1630f8907e948bde075a44b1b087f0d --- /dev/null +++ b/2021_17/dedup/oscar-000000000017.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b69631ab72d0fb85edc686b474965f7d0a3fc7d0333e953e78579f729629b746 +size 120887944 diff --git a/2021_17/dedup/oscar-000000000018.json.gz b/2021_17/dedup/oscar-000000000018.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..bb35c6202a1cf2c8b65ed69a2a93e223b35d1502 --- /dev/null +++ b/2021_17/dedup/oscar-000000000018.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3d65f8670f1f75ba8335afcdae1c95c956428654ef740c6b9bddeb02181a88 +size 119840563 diff --git a/2021_17/dedup/oscar-000000000019.json.gz b/2021_17/dedup/oscar-000000000019.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3c24330bc667291f20026503a2826fa0d50cd49a --- /dev/null +++ b/2021_17/dedup/oscar-000000000019.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde3570adc3791cfba3112db4e43a2de5d2e4ceacfd8e4f2fb23f6217164ba5f +size 117209924 diff --git a/2021_17/dedup/oscar-000000000020.json.gz b/2021_17/dedup/oscar-000000000020.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..9a6c7cea9a45640f198d9886006db22c14c1dd19 --- /dev/null +++ b/2021_17/dedup/oscar-000000000020.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c274cc82225845dee35c421dac7bfb3fe28f46fa5323d3790d3f169e3f0331d8 +size 116030938 diff --git a/2021_17/dedup/oscar-000000000021.json.gz b/2021_17/dedup/oscar-000000000021.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..47337f2e75b33a0e1bfde1b077a7da0b15657ada --- /dev/null +++ b/2021_17/dedup/oscar-000000000021.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e94a49f5022a73584d3466b6d69d83598febf8a411fc312d9cbfd697adfc4a +size 116690337 diff --git a/2021_17/dedup/oscar-000000000022.json.gz b/2021_17/dedup/oscar-000000000022.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..790b82d27b6291d70a9f2a0813cca8a54e468dc4 --- /dev/null +++ b/2021_17/dedup/oscar-000000000022.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f616e2ea43977df6c34f54f404a6847272d44789c1a1c3f5753da4d39fc6a5 +size 116553803 diff --git a/2021_17/dedup/oscar-000000000023.json.gz b/2021_17/dedup/oscar-000000000023.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..257d2425359aefe95444003697e40f2578830a21 --- /dev/null +++ b/2021_17/dedup/oscar-000000000023.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd82d2b098cd34f138a0bab4012cac4a16f3a7ae9b232e3d35cbea500ca4e9ef +size 120116189 diff --git a/2021_17/dedup/oscar-000000000024.json.gz b/2021_17/dedup/oscar-000000000024.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..c913572622faf495092f50407b8d93a5b8ddc1b3 --- /dev/null +++ b/2021_17/dedup/oscar-000000000024.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74632487f1723c3361438e1178dbf09e1dd207fd4244b7874fe8a1450e193fc +size 124595141 diff --git a/2021_17/dedup/oscar-000000000025.json.gz b/2021_17/dedup/oscar-000000000025.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..6e1aaae46054579238d73f72e16bde4f8a33bb18 --- /dev/null +++ b/2021_17/dedup/oscar-000000000025.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdab9f80009289bc795fd72e88e919e5fefecdbf0b2789fb4752d8650cca69b1 +size 124937836 diff --git a/2021_17/dedup/oscar-000000000026.json.gz b/2021_17/dedup/oscar-000000000026.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..b3d9d523b5cc224df3cc50a4865ae40242084d02 --- /dev/null +++ b/2021_17/dedup/oscar-000000000026.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddad655aa0a3534829a904b9c835016a5645e88ee36a05f5817b94b6a443f24a +size 131273505 diff --git a/2021_17/dedup/oscar-000000000027.json.gz b/2021_17/dedup/oscar-000000000027.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..86ca574d5ada7a9e974345bedee699afa3e3d1b9 --- /dev/null +++ b/2021_17/dedup/oscar-000000000027.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e762acdc76ea22b826101a2fc3a46af4ab2902c99e54aef278966785b5f2a25 +size 123537072 diff --git a/2021_17/dedup/oscar-000000000028.json.gz b/2021_17/dedup/oscar-000000000028.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..1d3d9fc9638ee3bf602be7352245ea429aae46cf --- /dev/null +++ b/2021_17/dedup/oscar-000000000028.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b8f408b6fdeba232a1d4a306871a2f4814249a29475ac7c643838925c8a1bf +size 118526527 diff --git a/2021_17/dedup/oscar-000000000029.json.gz b/2021_17/dedup/oscar-000000000029.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..cef85f135f6eabc42641e81ca51830467bc4c380 --- /dev/null +++ b/2021_17/dedup/oscar-000000000029.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3d2961f2691ae2a4956d645acdadabde564a4367a5e8c238f272924556c15f +size 118580659 diff --git a/2021_17/dedup/oscar-000000000030.json.gz b/2021_17/dedup/oscar-000000000030.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..22d39f10bc9df30b54300530e8ee7791660f98a9 --- /dev/null +++ b/2021_17/dedup/oscar-000000000030.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5e8dab75204e3f6214908313312d2b1096bef5cc9c012bca2c48448ce227be +size 115475574 diff --git a/2021_17/dedup/oscar-000000000031.json.gz b/2021_17/dedup/oscar-000000000031.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..77446be2bf6964e696bf6b4b39cd683879da6015 --- /dev/null +++ b/2021_17/dedup/oscar-000000000031.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2b7b589f98e4c828394b24ecf106b5ea927018f0b68309a88d855861b075c9 +size 112837824 diff --git a/2021_17/dedup/oscar-000000000032.json.gz b/2021_17/dedup/oscar-000000000032.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2f3b71a6e51a072d1043dd68690a26f36eed23ef --- /dev/null +++ b/2021_17/dedup/oscar-000000000032.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445f9b336de0975be34067cfaa95ee81980a647d287b1b7cb19cab0d48c63986 +size 115592227 diff --git a/2021_17/dedup/oscar-000000000033.json.gz b/2021_17/dedup/oscar-000000000033.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..564836cc2a9adfc97e9df0a7e34dd79b364aae39 --- /dev/null +++ b/2021_17/dedup/oscar-000000000033.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e18623ad7e82669cb335f6756e84bfdbac3bf7e320076e4959d2ba19f5505b +size 112853921 diff --git a/2021_17/dedup/oscar-000000000034.json.gz b/2021_17/dedup/oscar-000000000034.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..70695bb5a774989a5dbb724761f0d60b4aac8dca --- /dev/null +++ b/2021_17/dedup/oscar-000000000034.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86fb53d6ff7b768cbd68c03eb71c2c5b73f236d2bf1cc465c853374e90dee98e +size 114942317 diff --git a/2021_17/dedup/oscar-000000000035.json.gz b/2021_17/dedup/oscar-000000000035.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..889b0b60ee9dc7cb1cd2159085169ef008a54975 --- /dev/null +++ b/2021_17/dedup/oscar-000000000035.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067d8d02e201c38acdde0f16345dfbb55323459dccb7ff98a9c2bd703cdf33a2 +size 116121513 diff --git a/2021_17/dedup/oscar-000000000036.json.gz b/2021_17/dedup/oscar-000000000036.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..7ec4d8c31a8e90cd2892ad3531e0b68d0d8caaab --- /dev/null +++ b/2021_17/dedup/oscar-000000000036.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa902cff2d6100d154341c5430b06824dfa505909a25cf7d3366d88b84384a88 +size 117296415 diff --git a/2021_17/dedup/oscar-000000000037.json.gz b/2021_17/dedup/oscar-000000000037.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..10f95b15ef3b2b47cc43573bf62b4637277cb06d --- /dev/null +++ b/2021_17/dedup/oscar-000000000037.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b104dcc60516c76aa3c8b3f6a6e5781a6d6df80770099befae44cfcc2cc3cdc1 +size 119142289 diff --git a/2021_17/dedup/oscar-000000000038.json.gz b/2021_17/dedup/oscar-000000000038.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..76490873d40ba36fa6caca5c8fc901064b63fecb --- /dev/null +++ b/2021_17/dedup/oscar-000000000038.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a1d21a99dda542c8ee9b25bc644cbf4a8568efcc3f8c8edc2e5509507e95fa +size 119713240 diff --git a/2021_17/dedup/oscar-000000000039.json.gz b/2021_17/dedup/oscar-000000000039.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..8566f39e2b1ed7c395edbe325d7d9fcd6e2c36ab --- /dev/null +++ b/2021_17/dedup/oscar-000000000039.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d55612660a55196d1515cff497765058f1e620078efaa8566f01e0342eb63ad +size 128809815 diff --git a/2021_17/dedup/oscar-000000000040.json.gz b/2021_17/dedup/oscar-000000000040.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..dba7bcb509a89925cc943be8cde3b70b9141e6db --- /dev/null +++ b/2021_17/dedup/oscar-000000000040.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b9b06af1684ed33b48a5b021fdbdd0740ca285c2f5ff5ece06760349e1b592 +size 119071644 diff --git a/2021_17/dedup/oscar-000000000041.json.gz b/2021_17/dedup/oscar-000000000041.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..a0683a77bd1c35fabe6064386e4a6ae032855747 --- /dev/null +++ b/2021_17/dedup/oscar-000000000041.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5337150b586c9e2d685eb48f5f7bdf21ca4260bc02419665c86b9e95aa30b5b +size 113451785 diff --git a/2021_17/dedup/oscar-000000000042.json.gz b/2021_17/dedup/oscar-000000000042.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..30aef950b3fdda289ed031442b120363c22e19e4 --- /dev/null +++ b/2021_17/dedup/oscar-000000000042.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42e1a84b73e54549c0bbf73e359859a14b40b5182ec71e39693090f95d4fe8c +size 110128359 diff --git a/2021_17/dedup/oscar-000000000043.json.gz b/2021_17/dedup/oscar-000000000043.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f4bafd1c28e669dc71ac04a2336f082b986da774 --- /dev/null +++ b/2021_17/dedup/oscar-000000000043.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04283db3c9f08ee7c7448016d2d55d57458f5ed5186d4ca4fdd29ba55ae710e5 +size 117449836 diff --git a/2021_17/dedup/oscar-000000000044.json.gz b/2021_17/dedup/oscar-000000000044.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d9a163022d36136c52e9033121f2cf38b10e2dbc --- /dev/null +++ b/2021_17/dedup/oscar-000000000044.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec664e56cc3eb66a05836f8188a4db56416e31246582a644a214f4a40b83b7e8 +size 125061747 diff --git a/2021_17/dedup/oscar-000000000045.json.gz b/2021_17/dedup/oscar-000000000045.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..0eb4601456b4bbd783ee0383999d04f30cd4a00a --- /dev/null +++ b/2021_17/dedup/oscar-000000000045.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467f4bf5fb138baea1fc14364dff6ca1f544cb31bc6c35d9ecff5b44b43887a3 +size 124987758 diff --git a/2021_17/dedup/oscar-000000000046.json.gz b/2021_17/dedup/oscar-000000000046.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..e81305a10453c581087698613baf6b0a28c1a275 --- /dev/null +++ b/2021_17/dedup/oscar-000000000046.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51386497b3c3930f4806ce294aab0d5587270bcc9476f5412447d41ad1f88cb +size 120544637 diff --git a/2021_17/dedup/oscar-000000000047.json.gz b/2021_17/dedup/oscar-000000000047.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3757ce48680a87dcb235dcf80986eabf7f33aee0 --- /dev/null +++ b/2021_17/dedup/oscar-000000000047.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd899dd469fabf14ebb02e2a289c02aee2d30bf6a14b68116738a2fafd6817fc +size 34473209 diff --git a/2021_17/neardup/neardup_2021_17.py b/2021_17/neardup/neardup_2021_17.py new file mode 100644 index 0000000000000000000000000000000000000000..d95b516a0879f659e83199891ed3f9b89fd27cd7 --- /dev/null +++ b/2021_17/neardup/neardup_2021_17.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_17/neardup/*.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_17/neardup/oscar-neardup-000000000001.json.gz b/2021_17/neardup/oscar-neardup-000000000001.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..ff8c0da8e4800a7e7a805f8c7c7183d71a91009e --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000001.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:172fe13d5cdc3a8883a4348b3d0bf2ced36b090bc659e4d0af3da7dacb35a8c3 +size 110312802 diff --git a/2021_17/neardup/oscar-neardup-000000000002.json.gz b/2021_17/neardup/oscar-neardup-000000000002.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..38314e6002d1efd93c1664c11d4303ac82b7c78d --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000002.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f4876dc28122bc6fc2e413642b349edfd1743edd4199c2ec3ee2d93678f9d2 +size 113035280 diff --git a/2021_17/neardup/oscar-neardup-000000000003.json.gz b/2021_17/neardup/oscar-neardup-000000000003.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..75ac1b3a746582094db53faf9bb8623046489bb3 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000003.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b7c35398813045b72bcd90f6a76a1db431a81a73130440095a7428908e50229 +size 112352888 diff --git a/2021_17/neardup/oscar-neardup-000000000004.json.gz b/2021_17/neardup/oscar-neardup-000000000004.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f0fec3ffef4e378be7ae8e8eed79733bf6b1806c --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000004.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214c39aaf6f602309e382b71fdf6317bbd21c5f54b5325dee3fea349a443f274 +size 112947415 diff --git a/2021_17/neardup/oscar-neardup-000000000005.json.gz b/2021_17/neardup/oscar-neardup-000000000005.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f8ce060782ff631a025a7797cff173e0db5783af --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000005.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc9cef44a7f563729f70f8f37bcc27569fffc2ecc5646eff320d7e6f4b1d5fb +size 110618771 diff --git a/2021_17/neardup/oscar-neardup-000000000006.json.gz b/2021_17/neardup/oscar-neardup-000000000006.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f24cf5ba386b0fb9a1b7bb60d7afdcb59824ec81 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000006.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3545e9e5ea1bb3bcb193c4f7a36d1eda3e3f88e1f875d1f6bca14bb69e5cc1a +size 118113886 diff --git a/2021_17/neardup/oscar-neardup-000000000007.json.gz b/2021_17/neardup/oscar-neardup-000000000007.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..18814f6d96126ec6e2c289d5bd4179ab51fdcd0a --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000007.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf55dd736d184630a811343b2f26f86087741e78c4b9e61f8371c8fbf6e39f89 +size 123827256 diff --git a/2021_17/neardup/oscar-neardup-000000000008.json.gz b/2021_17/neardup/oscar-neardup-000000000008.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..486dc5b8bb42a8fcbf4e7657f4ce2703c981d277 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000008.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f934052e3a11992cf58dca9dbe8cc45c5fe072bffe78242ac74f94af561affb8 +size 113738695 diff --git a/2021_17/neardup/oscar-neardup-000000000009.json.gz b/2021_17/neardup/oscar-neardup-000000000009.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2228844c77941d21c8649763973b4fca75ea12d2 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000009.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c76c6009ad90ee8b0248b16128950a87524e006637a8b9cebc47e87ac92044 +size 107495970 diff --git a/2021_17/neardup/oscar-neardup-000000000010.json.gz b/2021_17/neardup/oscar-neardup-000000000010.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..bd952a254c7a6f5261aa84c571a293c53ba7e6fb --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000010.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3890be723b24758e3043b3b07f1856d12186acc2c4d1237d085429f9f4a4ab66 +size 116716384 diff --git a/2021_17/neardup/oscar-neardup-000000000011.json.gz b/2021_17/neardup/oscar-neardup-000000000011.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..b36c099e56c81ea5bf027b61c0856d827a0c3972 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000011.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:660019b6eebb26aaa9735d7ad590af30d4d2f71724a0f37b43bddad2a2d1baf5 +size 113275217 diff --git a/2021_17/neardup/oscar-neardup-000000000012.json.gz b/2021_17/neardup/oscar-neardup-000000000012.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..27dc4ff0cf62dee6f4b8be6b1ae43d33d25be86a --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000012.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67544f19f7501d2efc5959ab903f6d0051ec0298ecfea850163dba6e87a682bc +size 111087347 diff --git a/2021_17/neardup/oscar-neardup-000000000013.json.gz b/2021_17/neardup/oscar-neardup-000000000013.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3e61d6558ea06d78887db61dd30a232d46674710 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000013.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f999683403574a7d0ad55a841cb28e1e04bf81a0eb1c720350f7aa51f2aa6cc +size 117249502 diff --git a/2021_17/neardup/oscar-neardup-000000000014.json.gz b/2021_17/neardup/oscar-neardup-000000000014.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..0583970f71f0d002a282859d011288ae88d2d481 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000014.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59218db0f6ef4cf5b25fe73e1d6ebfb09380b8ce7e505804d9f9579c457fa506 +size 116250840 diff --git a/2021_17/neardup/oscar-neardup-000000000015.json.gz b/2021_17/neardup/oscar-neardup-000000000015.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..9ac46702dadad16c92e9a58bd79c992c14a5ae19 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000015.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d93f3f6632b1555cbd0f62b92cc0c761f753e48fe114c587050293969828bc0 +size 116058583 diff --git a/2021_17/neardup/oscar-neardup-000000000016.json.gz b/2021_17/neardup/oscar-neardup-000000000016.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..4d1d8b2d4c6428b18d481277406103c355a4dec4 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000016.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa260cb558f1595df7a178a9b71211e1fe196c76b4230d053b6f54a27e1180f2 +size 113374032 diff --git a/2021_17/neardup/oscar-neardup-000000000017.json.gz b/2021_17/neardup/oscar-neardup-000000000017.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..7c617f3632c03d0b2d1a91911a9500e39c35a5b2 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000017.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0432915ffe4f34a328465cdcc4b465d24a085a283b6700d173d355294fffbf3 +size 112746782 diff --git a/2021_17/neardup/oscar-neardup-000000000018.json.gz b/2021_17/neardup/oscar-neardup-000000000018.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..8b8465fc66a14e517b8ba507becd89ff8f44d822 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000018.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef68094b7b6cd0081de2a183bc4ca9ea5bf6f464baaa0b3f0bc6271d8718cd9 +size 110941804 diff --git a/2021_17/neardup/oscar-neardup-000000000019.json.gz b/2021_17/neardup/oscar-neardup-000000000019.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..51998d5a757560e3ec32117e8f51a1894978beb0 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000019.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b85fb3fff1c97d1670d53e5010df5c83c9fd94c6a0198146c805c76017920a3 +size 110484651 diff --git a/2021_17/neardup/oscar-neardup-000000000020.json.gz b/2021_17/neardup/oscar-neardup-000000000020.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..90aa78f1b59ae170daea3cc807bab2d44b6ffa6f --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000020.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266181f8c2192f62dc6142a83dc147734e7008c7ea1b0bf98e9b61ae3ee2b774 +size 114995316 diff --git a/2021_17/neardup/oscar-neardup-000000000021.json.gz b/2021_17/neardup/oscar-neardup-000000000021.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..1193834e61fd896a4b640ca4f69115161d059d32 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000021.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e5c526f5213b250233c3ad9fae8613fadaf974a2f1e508df108ecdc506fce62 +size 121249649 diff --git a/2021_17/neardup/oscar-neardup-000000000022.json.gz b/2021_17/neardup/oscar-neardup-000000000022.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..31120800b0239385bc0d5fad939a54c6460a3720 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000022.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feaa43cb2d96e4e567fa7e6112899bf40bb6d07523a0dc2d5c5b873d4d7440fb +size 122116089 diff --git a/2021_17/neardup/oscar-neardup-000000000023.json.gz b/2021_17/neardup/oscar-neardup-000000000023.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..64c0cd16837fe43c79edf8883898c1a650ea939b --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000023.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df271b623cace448037074fc7f850c8ac522f22e4b3af4602366365d6bf48322 +size 126703473 diff --git a/2021_17/neardup/oscar-neardup-000000000024.json.gz b/2021_17/neardup/oscar-neardup-000000000024.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..c0952329d026953d251dfd558a218c76642dd16d --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000024.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f06a6d5bcd67f2ee7a8177697e303d7139c5e5b71cff4287aedc91d4dc9cf78 +size 114032292 diff --git a/2021_17/neardup/oscar-neardup-000000000025.json.gz b/2021_17/neardup/oscar-neardup-000000000025.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3930fd76a7d9fde3bf8a02dec23156263dcc92ff --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000025.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b59dd9672ee623fc2535a2e6762ccbaaa932b745cf24ad442bd83defd01eef7 +size 113649113 diff --git a/2021_17/neardup/oscar-neardup-000000000026.json.gz b/2021_17/neardup/oscar-neardup-000000000026.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..954707ee2a6c123e4e73d3103cb37ed6db284cc9 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000026.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab656c16925574e567b21b453dacb9815b1adbaaa3c6265ac72b697047f561e5 +size 112432828 diff --git a/2021_17/neardup/oscar-neardup-000000000027.json.gz b/2021_17/neardup/oscar-neardup-000000000027.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..25c99574d2148a376b5c4767c92fdcce22c31b22 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000027.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f308892a96e1c41aa100cc98f8bbdae2582544eb8a7caaca1655891de89edca +size 106472188 diff --git a/2021_17/neardup/oscar-neardup-000000000028.json.gz b/2021_17/neardup/oscar-neardup-000000000028.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..dd6e6ffbe526f115947a7838faf373a8c8ad166b --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000028.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c41c6892bdf0242b869574c5d9a66f60d4a33518323165a6d123efaeaa02e5 +size 111124110 diff --git a/2021_17/neardup/oscar-neardup-000000000029.json.gz b/2021_17/neardup/oscar-neardup-000000000029.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..e11c4f2665d9e69efa7e7d4438a1ec4450c1a0d7 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000029.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5dea7f579bce967aef4ec1fc43d871cf8541535a54f26039d494a9e79c3b23 +size 108713228 diff --git a/2021_17/neardup/oscar-neardup-000000000030.json.gz b/2021_17/neardup/oscar-neardup-000000000030.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..58754aeb0fc433b36c96deea1934d8a391a0fce3 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000030.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62200e62d2831a1aa922c620bec18940ac3926c9973dd17c24cb77e70de307a4 +size 110843314 diff --git a/2021_17/neardup/oscar-neardup-000000000031.json.gz b/2021_17/neardup/oscar-neardup-000000000031.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..370ea96619995552e8aed40c38174b55a951ea7b --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000031.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895450334e4d00a0ce7406e1ecfdca3c949c6887c1d09f02b59f5f8252e4d4c2 +size 112549836 diff --git a/2021_17/neardup/oscar-neardup-000000000032.json.gz b/2021_17/neardup/oscar-neardup-000000000032.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..a43c9b33dfa79d6b68543ab5ac7df99daec196bc --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000032.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdd3bde0554a6a0ce0e3a667d79b3e04d54e7a936f3439133b808529c1f10e8 +size 114312856 diff --git a/2021_17/neardup/oscar-neardup-000000000033.json.gz b/2021_17/neardup/oscar-neardup-000000000033.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..223fe5f14645e24f0624428332a0d1c43d486c74 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000033.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b8f80195610984aece41e666120c840ebd98240f28f6e70162b22375548b0c +size 114724680 diff --git a/2021_17/neardup/oscar-neardup-000000000034.json.gz b/2021_17/neardup/oscar-neardup-000000000034.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..e2b210f7adecc5f119940c610592d5d62933b3cb --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000034.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1533a884e3d3d60af6d3b60644b3902d11da3d3b9b96d3426a03ba979c7f6080 +size 117813372 diff --git a/2021_17/neardup/oscar-neardup-000000000035.json.gz b/2021_17/neardup/oscar-neardup-000000000035.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..137a7159caabc7769e3e93bde5e6cc0601235304 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000035.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df8386d3e8d92f3879f2c773b2f5baf1c9c7bc3bdf7a02c88449089141252db +size 116096973 diff --git a/2021_17/neardup/oscar-neardup-000000000036.json.gz b/2021_17/neardup/oscar-neardup-000000000036.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d4c5bad09f81c5de303c85bc523b8635c1a9e97c --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000036.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9203fdf36498cac1f96281747e35ae31c4b4d1d7dbe9bd3d17e615d6ec8f9a97 +size 109449004 diff --git a/2021_17/neardup/oscar-neardup-000000000037.json.gz b/2021_17/neardup/oscar-neardup-000000000037.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..485f361bb4aba65028985b5e8512e65b8122d3e4 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000037.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef844b6044ba5fb3b2c8423dd1957d4329e451e758087df6ed733308b00b739 +size 107106225 diff --git a/2021_17/neardup/oscar-neardup-000000000038.json.gz b/2021_17/neardup/oscar-neardup-000000000038.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..7e3557192262030cfca3b631fef83d7533d9eed7 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000038.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69fa2bf6505c15e0c49185b4d833fe6a02a11a051d89c958d9c462df1435e16a +size 114147758 diff --git a/2021_17/neardup/oscar-neardup-000000000039.json.gz b/2021_17/neardup/oscar-neardup-000000000039.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..642625ee962ce65de71c86e818d4df71a57361b4 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000039.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c382f05018df6292df5eb733f6a220546f3b677786fd09f6f79d67abc06dc3 +size 124693358 diff --git a/2021_17/neardup/oscar-neardup-000000000040.json.gz b/2021_17/neardup/oscar-neardup-000000000040.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..358afa783a8289b17778f8d10598ad1a15f64f8f --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000040.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec954c6207bc4463cc961b27a839062ef0518af3db5c154beca397f32ce69103 +size 118360595 diff --git a/2021_17/neardup/oscar-neardup-000000000041.json.gz b/2021_17/neardup/oscar-neardup-000000000041.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..045a2c9e70e3e15428bfd5dd97d6533bafccb0c1 --- /dev/null +++ b/2021_17/neardup/oscar-neardup-000000000041.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47e87a3da1f3a722824bb4828ff2ee42b52b46c49c8ebe9f1bc85ff5d27e660 +size 74495968 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000001.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000001.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..4f175bd1bfbb560fd2f501656d52f2b45291f63a --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000001.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5a0f1faa587cbbe49b7289920051e87ce17f7d0bf143bb9c98481467aa0f34 +size 53782472 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000002.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000002.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..e0f7d5fd6b74d9c869a0ec529f273678f8a81488 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000002.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee7f06289c2c471e98ef3d963cddebd80f94411978071fea69dd22bfc389e45 +size 55127769 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000003.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000003.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..eb69c4de98afcd50117c35095f3fc8695a4de824 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000003.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a72bc677df9198e08730df8358107da2ab9417eff4b3be3908c93a1d0e7e07 +size 56417255 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000004.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000004.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..008a88a9786e0632637c5cd3d13d3643b2a4be17 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000004.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321a4cb28396900135bfb24487720eab97484ea3c9d24a82dbeed59b3e041245 +size 57697404 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000005.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000005.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..6830bc795cc646e4031e017c82cb59540dd6dd6b --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000005.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1dd640570f51f6065e561910b68a46d312cd8cc5a3577ce5b2906d5a686819 +size 55031896 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000006.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000006.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..17939ee0cecf7cdf8a224c1c3248c431d90f219d --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000006.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3980be26bc7616303dc3dcf1dbf0a1577188ded51ecdf3391ff5800bcd069b +size 55114928 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000007.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000007.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f30d3f93c85ace14aee1e511a56d5cdac89c4ffe --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000007.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1c0513dbaa3b09ed5d129bed55a1007ca706f6ba0bef517bc45006e4136f7a +size 55040695 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000008.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000008.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..5dddfabe38413fe2cde6e55e564ac23b2fa9cce4 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000008.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a55d5a67afe35c9754744084ca9fce6fd1f1005c91db1d7b6498bf742a68c1af +size 56756168 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000009.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000009.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..5443df08dbe19deae9b581823680c7edab58be29 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000009.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be1e5e4c2e42716b37ada7f41955ad64d583888caf0a6fcb2d455f98aac1e38 +size 55823292 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000010.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000010.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..06dc0342129e2b07f0d9c543210aa031c6a23b70 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000010.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4435e749f1b9c05e05a66fda428dcc9e5dfee05bd661c5ebcbb9d3a54d84813b +size 55477085 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000011.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000011.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..73540296fa9bdbc64f9e2c85e9530540e4e0a261 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000011.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8a54ed4adf89f2c7a11b0f290d88be56840795779ec31bd3df64a78b987a9f +size 55862960 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000012.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000012.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3e163faa59d3c6345f9b60952bb975522e3b842a --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000012.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e0c115333a113a1cda8f7903b797779f3867495b1687a33711d4f0ed8b1038 +size 56466313 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000013.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000013.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..1da57b59042601cbe64657d3d714a343e78f035f --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000013.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e09fe3fd596c5aeed4c844f075350ec19ccda8ef85730f0d9ef040786089a3f +size 56581945 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000014.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000014.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..7de5f36f9e2acbc9599684adff222af8fe1d7d28 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000014.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b63cbe89a691e1ff017e04ac26b3b5d4d3bef00f06febaecc206082647e654 +size 56086042 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000015.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000015.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..5fd12b64783c56d127364c9920484ee2d34c1e74 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000015.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0eb54c6e83fe7db22fe508b4d657e047ec94006d78e67bf4a32b35d6af96e7 +size 56300835 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000016.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000016.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f88fe7d565be2d53827b4984b9e7484f8950ce36 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000016.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaeb03b23984d6901a09643578bba32cf4a9582bad2fbf7a4b1b1afde36c3432 +size 55669216 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000017.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000017.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..0a68d2b9e49a94459e03190808faa12a3b83c1ee --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000017.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80af5fba7ddc5d75b95e564ec9f8bbe487abe775f2461bb8c929b09babc1054a +size 56003548 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000018.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000018.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..0faec8920a294a59dfdcb7242a578f3f9641770f --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000018.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3716a8a117c103cad73c822456b415bb146cbe2794ed994f824f66f8b40665f +size 56002495 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000019.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000019.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..79ae3cebd95c35f7ae133ddcae464d486c1b9786 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000019.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89603b2c36a30bf9d49cd5a79df25aa0293c5b9aece469afcde09f4aff6b9cd1 +size 56455912 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000020.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000020.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..063051de25c0414ecf5468ec3c235b8eede10c3e --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000020.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a713f542bb56303dbe7e4be04b88815870b3e8ecef206e0e3c4f7f4231813071 +size 57711537 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000021.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000021.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..b2455d83deede41009a7fd3070e15c52146d2dd4 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000021.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b16f9bed2fec24a81315722dc51b33d6393cceeef0f7d7341789ac77b9fa21d +size 58044920 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000022.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000022.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d91e4f493c45a59aa5ba46652083f45b0e3a9402 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000022.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a6b88f5f513be0cf3d9044fb80a59738ffb3722a7b688381c46ad6b1b1ac83 +size 58397916 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000023.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000023.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d687a67466e584b0345aef478f8ba56be920b67d --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000023.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ff40cf0ec842469018aea94479935d5fb3412313e0ee248396656d3280994d +size 55209278 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000024.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000024.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..6e6f99256abcadaf3b374b5c2a3aa5b83355866d --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000024.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62f273b00cfee004390d48dab9dd59157c5cef6036c5ac0fcbb225f54afdbd7 +size 56527200 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000025.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000025.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2f089be782fe548504eca92306debcb10ec7855e --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000025.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00655e52d8ea071d40116eff865be7e79a248aa313a372c04f464daefc79d1fa +size 57309953 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000026.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000026.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..ce67c8f53c045e006dbdccf615c7ee43af910888 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000026.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7702ede444800e930e4ca594b457bc225989659eca1bb403b278663a1cbcf3c7 +size 57654558 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000027.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000027.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3050704a254632edf49ff2401e4c1dce997246b0 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000027.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98ec727ca24ae55ef3f29ca2b42430f0af39ba496a64db46a93e228feadfc1d +size 56389491 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000028.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000028.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..01d4631a02370eb14fa5a21df5414788dc004ee3 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000028.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b806c8726f384814c4850ebc7a628b1535f831f4612a7d9236fab033888c772c +size 57073216 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000029.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000029.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..80931c423dd49fa90fffd0934e7ff46e418bdf23 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000029.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c34f391b120555b224b74e8b70eab3311f76c712ede78b3678d46d6c4741db +size 56809946 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000030.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000030.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..1bdd642ea49dba88953e9015f6b645ffb009838d --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000030.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58783aa6d17108f7eb47d37e631973b82b6df5cc29b6ee57a5699c39db40f0cd +size 56828233 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000031.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000031.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f4e3d77c908d77f3fe880481b28e8059e1968c26 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000031.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d28c82ef912085bb5f55bd81b735154de20c506637552b740be392154045b5 +size 56754739 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000032.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000032.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..adf68d722d65335fc1a92753917fe8bdf783c015 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000032.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c04599aeb99cc6c2577e7f14f3ede2e78f2bbbe458993dec570063fc8261d33 +size 56741620 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000033.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000033.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..971e764164105867a2d75c2bd0a53910b498e5b2 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000033.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f38dfd0ec5e07f9428d95c90f5dd4b46d524de3e6609f567cdef3ee2a80fb468 +size 56544554 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000034.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000034.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..9b53971ebb8800b0a3449dfc2d03f92e08938574 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000034.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bf491e4ae7988df5feda4c6062f7f02bd30b3652e2e4ce6a441153e9cd016c +size 56476592 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000035.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000035.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..b1d0511013391680a63e9b5d1705d8ccff698d8a --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000035.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210f0e6e8fbbbf7a9b2de4232c1495f00e3a9009d3aadec94d1fdaeb1e8ac0f1 +size 57013026 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000036.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000036.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3a2b82325c0c1c5d02a43a5bf07d0c5dc88edcbe --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000036.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae661f201e5f168be016a23d31e2ba5241c1fc17fc61b706b04e79a6da1a4db +size 57360672 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000037.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000037.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..aa2a48dab18053fa16e3dc1fe74552cb9a61a127 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000037.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b527ef1fd70ada64ed8ce9f6cc862d1a748309851cd3df1aaa8ccd1bb481b38 +size 56878695 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000038.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000038.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2f88159ed6fd02a6d56aecf179f83cf9032400ef --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000038.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89578014108f3bfc2efb73793d0ff2a0c32d06f476ab4c34f828e3d404a73c52 +size 55548494 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000039.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000039.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..92eff16dc46b50c651bda5d111ea040b4abb6c99 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000039.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac08b65fec0cae49964e2f116524ccf57aca42807bfc738a3ac1ff08f9c28c6 +size 56596985 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000040.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000040.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..2ec60cb4af6a36ea85413df91e42ce2848eaeec2 --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000040.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b7604ec3ccd8a04e9866752e2554ec379d83793ca7dafc38c19eabe85abf952 +size 57224141 diff --git a/2021_17/neardup_clean/cleaned_oscar-neardup-000000000041.json.gz b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000041.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..3f29e83422b5f7625d383b4feae342aa7b9b2c3d --- /dev/null +++ b/2021_17/neardup_clean/cleaned_oscar-neardup-000000000041.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b318260d78d705024fe50c98b4491cb8537229388a01925486309f5ca6b006f +size 37909623 diff --git a/2021_17/neardup_clean/neardup_clean_2021_17.py b/2021_17/neardup_clean/neardup_clean_2021_17.py new file mode 100644 index 0000000000000000000000000000000000000000..3af98fb40ea477c2038ff770f7deaaf8eda98396 --- /dev/null +++ b/2021_17/neardup_clean/neardup_clean_2021_17.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_17/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_17/raw/raw_2021-17.py b/2021_17/raw/raw_2021-17.py new file mode 100644 index 0000000000000000000000000000000000000000..e9fb9c4c965c5f75a267d7f03a59bb9b56d150bf --- /dev/null +++ b/2021_17/raw/raw_2021-17.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 zstandard as zstd +import datasets +logger = datasets.logging.get_logger(__name__) + +file = sorted(glob.glob('/data/oscar_id/2021_17/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